Android:CoordinatorLayout 和 SwipeRefreshLayout
Posted
技术标签:
【中文标题】Android:CoordinatorLayout 和 SwipeRefreshLayout【英文标题】:Android: CoordinatorLayout and SwipeRefreshLayout 【发布时间】:2015-12-21 00:18:19 【问题描述】:我尝试从新的支持库 22.2.0 中实现自动隐藏工具栏功能。没有 SwipeRefreshLayout 工作正常:
但是当我重新添加这个布局时,工具栏重叠 recyclerview:
代码:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_
android:layout_
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<android.support.design.widget.AppBarLayout
android:layout_
android:layout_>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_
android:layout_>
<android.support.v7.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>
</android.support.v4.widget.DrawerLayout>
2020 年 Androidx 更新:
代码:
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_
android:layout_
android:fitsSystemWindows="true">
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:fab="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_>
<com.google.android.material.appbar.AppBarLayout
android:layout_
android:layout_>
<androidx.appcompat.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_
android:layout_
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"/>
</com.google.android.material.appbar.AppBarLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipe_container"
android:layout_
android:layout_>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.drawerlayout.widget.DrawerLayout>
知道如何解决这个问题吗?
【问题讨论】:
【参考方案1】:将滚动行为设置为SwipeRefreshLayout
而不是RecyclerView
。
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipe_container"
android:layout_
android:layout_
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/cardList"
android:layout_
android:layout_
android:scrollbars="vertical" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
【讨论】:
@Tomas 我想问您是否注意到,如果您开始滚动直到 AppBarLayout 完全展开(verticalOffset 达到 0)并且您继续滚动 SwipeRefreshLayout 的刷新指示器出现,因此用户将也能触发这个动作。至少在我这边很容易重现,RecyclerView 上只有几个元素。任何帮助将不胜感激。 @ZsoltBoldizsár 请参阅 ***.com/questions/30779667/… 为我工作以上是关于Android:CoordinatorLayout 和 SwipeRefreshLayout的主要内容,如果未能解决你的问题,请参考以下文章
Android:CoordinatorLayout 和 SwipeRefreshLayout
Android:CoordinatorLayout 和 SwipeRefreshLayout
错误:程序类型已存在:android.support.design.widget.CoordinatorLayout$Behavior
Android分页与滑动刷新内部CoordinatorLayout得到错误
程序类型已经存在:android.support.design.widget.CoordinatorLayout$Behavior