【发布时间】:2019-11-06 08:37:00
【问题描述】:
我在CoordiantorLayout 中有一个AppBar 和RecyclerView。 SwipeToRefresh 必须全屏,但 RecyclerView 不会向下滚动。
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="128dp"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
如何在没有库的情况下在协调器布局中添加全屏拉动以刷新。
【问题讨论】:
标签: android android-recyclerview android-coordinatorlayout android-appbarlayout swiperefreshlayout