android ScrollView嵌套RecyclerView只显示一条数据的解决办法

在RecyclerView外层套上一层RelativeLayout即可。 如果列表中有edittext 不能写

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#F5F5F5"
        android:overScrollMode="never"
        android:scrollbars="none"/>

</RelativeLayout>
发布了76 篇原创文章 · 获赞 39 · 访问量 11万+

猜你喜欢

转载自blog.csdn.net/qq_26075861/article/details/86685293