scrollview 嵌套recyclerview的新的解决办法

来源:互联网 发布:淘宝店换类目影响 编辑:程序博客网 时间:2024/06/16 01:35
<RelativeLayout    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:descendantFocusability="blocksDescendants">    <android.support.v7.widget.RecyclerView        android:id="@+id/recyclerview"        android:layout_width="match_parent"        android:layout_height="wrap_content" />

</RelativeLayout>

以上是xml里面的代码

下面是activity里面要加的属性

recyclerview.setHasFixedSize(true);// --'
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT_WATCH) {
recyclerview.setNestedScrollingEnabled(false);
}