RecyclerView嵌套展示不全问题

最近在做项目时,由于重构项目,以前习惯用listview,重构之后项目中开始使用RecyclerView,但是我发现scrollview嵌套RecyclerView总是item显示不全,这让我很苦恼,由于刚刚刚开始使用不太了解, 后来查看了一些资料,最总搞定; 在你的RecyclerView上再嵌套一层RelativeLayout然后添加一下属性这样就OK,

 android:descendantFocusability="blocksDescendants" 

这个属性你可以看点击打开链接。希望对你有搜帮助!

    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:descendantFocusability="blocksDescendants">

            android:id="@+id/lv_demand_hot"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="15.5dp"
        android:nestedScrollingEnabled="false" />

你可能感兴趣的:(嵌套冲突)