SrollView与RecyclerView

ScrollView嵌套RecyclerView,当我离开当前页面,然后又回来时,RecyclerView就会把它上边的控件都挤出页面,它显示在页面最上边。

原因应该是RecyclerView抢了焦点,只需要把ScrollView中最上边的那个控件加上几句代码就可以解决这个问题。

 android:focusable="true"
 android:focusableInTouchMode="true" 

这个哥们timshinlee提供了一个更简单的方法,只需一行代码就可以搞定。

我们知道,ScrollView下只能包裹一个控件,所以我们常用ScrollView包裹一个LinearLayout(或RelativeLayout),然后再包裹我们的其他控件(比如RecyclerView等),那一行代码就写在LinearLayout(或RelativeLayout)上。

<LinearLayout
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:descendantFocusability="blocksDescendants"
 android:orientation="vertical">

只写一行:Android:descendantFocusability=”blocksDescendants”

就可以解决RecyclerView抢焦点,把它上面的控件顶飞的bug了。

关于android:descendantFocusability,下面写点扩展知识。

Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.
Must be one of the following constant values.

该属性是当一个为view获取焦点时,定义viewGroup和其子控件两者之间的关系。

属性的值有三种:

    beforeDescendants:viewgroup会优先其子类控件而获取到焦点

    afterDescendants:viewgroup只有当其子类控件不需要获取焦点时才获取焦点

    blocksDescendants:viewgroup会覆盖子类控件而直接获得焦点

本来我以为beforeDescendants也可以起作用,可事实证明我还是太天真了,只能用block,block的意思是阻止。

原文地址:https://www.cnblogs.com/banzhuan/p/6757016.html