美文网首页
BottomSheetDialogFragment里面使用下拉刷

BottomSheetDialogFragment里面使用下拉刷

作者: 飞牛在天 | 来源:发表于2023-08-06 14:04 被阅读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>
...

相关文章

网友评论

      本文标题:BottomSheetDialogFragment里面使用下拉刷

      本文链接:https://www.haomeiwen.com/subject/rffwpdtx.html