Android CoordinatorLayout嵌套RecyclerView再嵌套RecyclerView后导致联动失效问题

2022-07-29 14:05:49

问题

  • CoordinatorLayout 嵌套 RecyclerView 滑动联动没问题,但是在 RecylerView 中再嵌套一层 RecyclerView 就会出现不联动的问题。

解决

  • 给最内层的 RecyclerView 设置属性:nestedScrollingEnabled = false,使其不参与联动
<androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv_item"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:nestedScrollingEnabled="false"/>
  • 作者:张雨zy
  • 原文链接:https://blog.csdn.net/yu540135101/article/details/123304360
    更新时间:2022-07-29 14:05:49