【发布时间】:2015-03-10 13:15:33
【问题描述】:
我在 ScrollView 中有一个回收站视图。我想禁用回收器视图滚动,以便它监听其父布局,A ScrollView!
【问题讨论】:
-
阅读ViewGroup文档,注意拦截MotionEvents
标签: android android-scrollview android-recyclerview
我在 ScrollView 中有一个回收站视图。我想禁用回收器视图滚动,以便它监听其父布局,A ScrollView!
【问题讨论】:
标签: android android-scrollview android-recyclerview
这应该可以解决您的 RecyclerView 嵌套滚动问题。
mRecyclerView.setNestedScrollingEnabled(false);
RecyvlerView 实现NestedScrollingChild
例如,如果 RecyclerView 父级是 ScrollView 或 ListView 或 RecyclerView 或任何 AbsListView
禁用子 RecyclerView 的滚动。
【讨论】:
【讨论】:
在xml中添加这一行,
android:nestedScrollingEnabled="false"
【讨论】: