在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>
...