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


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

android:descendantFocusability="blocksDescendants"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

            android:id="@+id/recyclerview_order_goods"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#F5F5F5"
        android:overScrollMode="never"
        android:scrollbars="none"/>

你可能感兴趣的:(android ScrollView嵌套RecyclerView只显示一条数据的解决办法)