美文网首页
ScrollView嵌套RecyclerView时只显示一行元素

ScrollView嵌套RecyclerView时只显示一行元素

作者: df661d1e16ba | 来源:发表于2018-08-22 10:33 被阅读498次

有时候在ScrollView中嵌套RecyclerView会发现RecyclerView只显示一行元素,这可能是Android的一个bug,解决方法是在RecyclerView外层套一层RelativeLayout。并设置android:nestedScrollingEnabled="false"

<RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/rv_news2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:background="@color/colorWhite"
                    android:nestedScrollingEnabled="false" />
</RelativeLayout> 

相关文章

网友评论

      本文标题:ScrollView嵌套RecyclerView时只显示一行元素

      本文链接:https://www.haomeiwen.com/subject/tkyeiftx.html