android CoordinatorLayout使用问题

Android 码拜 8年前 (2016-05-07) 944次浏览
再用CoordinatorLayout的时候有个问题,布局如下
<android.support.design.widget.CoordinatorLayout
android:id=”@+id/cl”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>
<android.support.design.widget.AppBarLayout
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>
<RelativeLayout
android:layout_width=”match_parent”
android:layout_height=”wrap_content”
app:layout_scrollFlags=”scroll”>
<TextView
android:id=”@+id/tv1″
android:layout_width=”match_parent”
android:layout_height=”200dp”
android:background=”#ffffffff”
android:text=”adfaafdadsfasdf”
app:layout_scrollFlags=”scroll” />
<TextView
android:id=”@+id/tv2″
android:layout_width=”match_parent”
android:layout_height=”20dp”
android:layout_below=”@+id/tv1″
android:background=”#ffffffff”
android:text=”adsfasdflllllllllllll”
app:layout_scrollFlags=”scroll” />
</RelativeLayout>
</android.support.design.widget.AppBarLayout>
<ListView
android:id=”@+id/list”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
app:layout_behavior=”@string/appbar_scrolling_view_behavior”>
</ListView>
</android.support.design.widget.CoordinatorLayout>
本人想实现在向上滑动listview时,上面的textview也跟着向上滑动,怎么设置呢
解决方案

20

去掉 app:layout_scrollFlags=”scroll”

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明android CoordinatorLayout使用问题
喜欢 (0)
[1034331897@qq.com]
分享 (0)