ScrollView 嵌套 RecyclerView 显示不全,
2017-06-15 本文已影响215人
weiyushuai
项目中遇到ScrollView 嵌套RecyclerView 导致RecyclerView 显示不全,原本想着重写RecyclerView 的onMeasure,后来发现v4包中有NestedScrollView可以解决RecyclerView显示不全,代码如下:
<android.support.v4.widget.NestedScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</android.support.v4.widget.NestedScrollView>
解决了显示不全问题,又出现一个新问题,ScrollView嵌套RecyclerView,当我离开当前页面,然后又回来时,RecyclerView就会把它上边的控件都挤出页面,它显示在页面最上边。原因应该是RecyclerView抢了焦点,只需要把ScrollView中最上边的那个控件加上几句代码就可以解决这个问题。
android:focusable="true"
android:focusableInTouchMode="true"
只需一行代码就可以搞定。
我们知道,ScrollView下只能包裹一个控件,所以我们常用ScrollView包裹一个LinearLayout(或RelativeLayout),然后再包裹我们的其他控件(比如RecyclerView等),那一行代码就写在LinearLayout(或RelativeLayout)上。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
android:orientation="vertical">
只写一行:
descendantFocusability=”blocksDescendants”
就可以解决RecyclerView抢焦点,把它上面的控件顶飞的bug了。
该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。
属性的值有三种:
beforeDescendants:viewgroup会优先其子类控件而获取到焦点
afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点
blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点