BottomSheetDialogFragment里面使用下拉刷

2023-08-06  本文已影响0人  飞牛在天

在BottomSheetDialogFragment的布局文件中使用下拉刷新组件,下拉刷新不工作,通过搜索找到解决方案,需要给recyclerview增加属性android:nestedScrollingEnabled="false",禁止recyclerview的嵌套滑动处理。

...
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
      android:id="@+id/srlComments"
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_marginTop="20dp"
      android:layout_weight="1">

      <androidx.recyclerview.widget.RecyclerView
          android:id="@+id/rvComments"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:nestedScrollingEnabled="false" />
  </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
...
上一篇 下一篇

猜你喜欢

热点阅读