在片段更改期间如何存储和恢复折叠工具栏的滚动位置?

时间:2018-10-17 19:20:43

标签: android android-collapsingtoolbarlayout

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

现在,工具栏将重新创建,并且不会保存上一个滚动位置,而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>

3 个答案:

答案 0 :(得分:2)

看了几天StackOverflow之后,我实际上找到了解决方法。

我不确定是什么原因引起的,但是在活动之间切换时,CollapsingToolbar将其保存为滚动位置。 使用FragmentTransaction使用Fragments时会发生此问题。

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

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

如果可以解释确切的原因是问题的根本原因,那么请发表评论。

答案 1 :(得分:1)

您只需添加id attr即可保留滚动位置:

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

ref:https://stackoverflow.com/a/39898595/843860

答案 2 :(得分:1)

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