NestScrollView嵌套recycleview使用出现的问题及解决办法

NestScrollView嵌套recycleview使用出现的问题
自己在使用过程中出现的问题,在网上找到的解决办法记录一下
1.NestScrollView和recycleview一起使用出现滑动冲突
解决办法:取消recycleview的滑动
recyclerView.setNestedScrollingEnabled(false);

2.recycleview抢占焦点,不管NestScrollView的内容是什么,会自动跳转到recycleview显示
解决办法:
1)给NestScrollView节点添加
android:focusableInTouchMode="true"
2)给NestScrollView下的包裹滑动内容的layout添加
android:descendantFocusability="blocksDescendants"
参考博客:https://blog.csdn.net/a1018875550/article/details/73736013

猜你喜欢

转载自blog.csdn.net/qq_36237569/article/details/82153468
今日推荐