问题重现:
当一个页面中布局多个属性为 android:layout_height="wrap_content"的RecyclerView 时,页面在某些版本下无法上下滑动;
解决办法:
在每个RecyclerView外层嵌套一个RelativeLayout,并设置descendantFocusability属性。代码如下
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:descendantFocusability="blocksDescendants">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="#ffffff"
android:nestedScrollingEnabled="false">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
网友评论