Android之SwipeRefreshLayout嵌套RecyclerView遇到的坑
Posted chen.yu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之SwipeRefreshLayout嵌套RecyclerView遇到的坑相关的知识,希望对你有一定的参考价值。
1 、需求
RecyclerView多布局里面加入SwipeRefreshLayout实现下拉刷新
2、关键代码
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/mainRefresh"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/llRemind"
app:layout_constraintVertical_bias="0.0"
tools:layout_editor_absoluteX="0dp" >
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="parent"
app:
以上是关于Android之SwipeRefreshLayout嵌套RecyclerView遇到的坑的主要内容,如果未能解决你的问题,请参考以下文章