-
Notifications
You must be signed in to change notification settings - Fork 0
NestedScrollView嵌套RecyclerView
shewenbiao edited this page Aug 15, 2019
·
2 revisions
NestedScrollView嵌套RecyclerView时会出现以下几个问题
解决办法:
mRecyclerView.setNestedScrollingEnabled(false);
解决办法:
在NestedScrollView节点添加
android:focusableInTouchMode="true"
然后在NestedScrollView的子节点view添加:
android:descendantFocusability="blocksDescendants"
或者
直接mRecyclerVIew.setFocusableInTouchMode(false)