如何在片段变化时存储和恢复折叠工具栏的滚动位置?

How to store and restore the scroll position of collapsing toolbar during fragment changes?

我想要的:切换片段时保存折叠工具栏的滚动位置。

现在工具栏重新创建并且不保存最后滚动的位置但 recyclerView 保存。如何保存折叠工具栏滚动位置?

Layout.xml

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/f_c_coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
    android:id="@+id/f_c_app_bar_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/f_c_collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:titleEnabled="false"
        app:layout_scrollFlags="scroll">

        <android.support.v7.widget.Toolbar
            android:id="@+id/f_c_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:titleTextColor="@android:color/white"
            app:layout_scrollFlags="scroll|enterAlways"
            app:layout_collapseMode="parallax"
            android:fitsSystemWindows="true"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>

    </android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<android.support.v7.widget.RecyclerView
....
/>

</android.support.design.widget.CoordinatorLayout>

在研究 Whosebug 几天后,我终于找到了解决方案。

我不确定是什么导致了这个问题,但 CollapsingToolbar 在活动之间切换时保存了它的滚动位置。 使用 FragmentTransaction 处理片段时出现此问题。

要保存 CollpasingToolbar 的滚动状态,请将此行添加到片段 onViewCreated() 方法中。

ViewCompat.requestApplyInsets(mCoordinatorLayout); // pass the coordinatorlayout id.

如果有人能解释清楚问题背后的确切原因,请发表评论。

您可以通过简单地添加 id 属性来保留滚动位置:

<androidx.coordinatorlayout.widget.CoordinatorLayout
  android:id="@+id/coordinator_layout"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

参考:

@Ansh 的回答并没有解决我的类似案例,只是将 ID 设置为 CoordinatorLayout 并且 AppBarLayout 做到了!这样,CollapsingToolbarLayout的状态会自动保存。