当 ScrollingView 到达顶部时停止 AppBarLayout 中的 CollapsingToolbarLayout 扩展
Stop CollapsingToolbarLayout in AppBarLayout expanding when ScrollingView reaches top
我想达到相同的 appbarlayout 行为。正如您从下面的 gif 中看到的那样。
当列表到达顶部时,不会触发 appbarlayout 展开。它会在第二次向上滚动时展开。
有人知道实现它的方法吗?
我通过做这些事情成功地模仿了这种行为:
考虑一下这个布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="300dp"
app:layout_scrollFlags="snap|scroll|exitUntilCollapsed">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
app:layout_collapseMode="pin" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
在activity
list.setOnScrollChangeListener { list, _, _, _, _ ->
list.isNestedScrollingEnabled = !list.canScrollVertically(-1)
}
这样就可以了。
我确信有更好的方法可以实现这一点,但这就是我解决它的方法。
我想达到相同的 appbarlayout 行为。正如您从下面的 gif 中看到的那样。
当列表到达顶部时,不会触发 appbarlayout 展开。它会在第二次向上滚动时展开。
有人知道实现它的方法吗?
我通过做这些事情成功地模仿了这种行为:
考虑一下这个布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="300dp"
app:layout_scrollFlags="snap|scroll|exitUntilCollapsed">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
app:layout_collapseMode="pin" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
在activity
list.setOnScrollChangeListener { list, _, _, _, _ ->
list.isNestedScrollingEnabled = !list.canScrollVertically(-1)
}
这样就可以了。 我确信有更好的方法可以实现这一点,但这就是我解决它的方法。