解决ScrollView嵌套RecyclerView只显示一行的一种比较简单的方法

解决ScrollView嵌套RecyclerView只显示一行的一种比较简单的方法

ScrollView嵌套RecyclerView用多了,有些时候就会发现RecyclerView的数据只显示一行。

具体情况不是很清楚,只是知道一种解决的办法,话不多说

                "match_parent"
                    android:layout_height="match_parent">

                    .support.v7.widget.RecyclerView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:nestedScrollingEnabled="false">

                    .support.v7.widget.RecyclerView>

                

其实只需要在 RecyclerView外层单独加上RelativeLayout或者LinearLayout,RecyclerView就能正常显示

只是这个时候滑动冲突可能会导致RecyclerView没有滑动惯性了,就需要给RecyclerView设置属性

                android:nestedScrollingEnabled="false"

关闭RecyclerView的嵌套滚动效果

完美滑动!

你可能感兴趣的:(View)