ScrollView嵌套Recyclerview时,我们点击Recyclerview的条目之后,发现Recyclerview会被顶上去,后来发现是因为Recyclerview抢占焦点导致的,解决办法:
在xml布局中的ScrollView节点上添加 android:focusableInTouchMode=“true”,在ScrollView子节点,一般会为LinearLayout或RelativeLayout中添加 android:descendantFocusability="blocksDescendants"完美解決,親測可用。
作者:樊彩綵
原文:https://blog.csdn.net/weixin_43820591/article/details/86685674
网友评论