CollapsingToolbarLayout 使 RecyclerView 在片段视图重新创建后直到底部才可滚动

CollapsingToolbarLayout makes RecyclerView NOT scrollable until bottom after fragment view recreation

在第一个片段中,我有一个带有固定工具栏的 CollapsingToolbarLayout。对于 CollapsingToolbarLayout,我已将 layout_scrollFlags 设置为 "scroll|exitUntilCollapsed",因为我希望工具栏保持固定状态。

当我向下滚动以使 CollapsingToolbarLayout 折叠时,然后单击 RecyclerView 中的任何项目导航到下一个屏幕,然后在单击后退按钮后返回到第一个屏幕我看不到也看不到滚动到最后一项。如果我先滚动到顶部并展开 CollapsingToolbarLayout,我可以滚动到最底部。看起来 CollapsingToolbarLayout 从 RecyclerView 的底部吃一个垂直 space 等于工具栏的高度。

但是,如果我从 layout_scrollFlags 中删除 exitUntilCollapsed 并使用其他工具,问题就消失了,但工具栏会折叠。

我已尝试 material 库版本 1.1.0 和 1.2.0 以及最新的 1.3.0-alpha02。该问题似乎存在于所有这些版本中。

我想知道是我的代码有问题还是库中的错误?

<com.google.android.material.appbar.CollapsingToolbarLayout
    android:id="@+id/collapsing_toolbar"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_scrollFlags="scroll|exitUntilCollapsed"
    app:statusBarScrim="@color/colorTransparent"
    app:titleEnabled="false"
    app:toolbarId="@+id/toolbar">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/first_fragment_tv_first_row"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="16dp"
            android:layout_marginTop="?attr/actionBarSize"
            android:layout_marginEnd="16dp"
            android:gravity="start"
            android:text="First row"
            android:textColor="@color/colorWhite"
            android:textSize="30sp"
            android:textStyle="bold"
            app:layout_constrainedWidth="true"
            app:layout_constraintBottom_toTopOf="@+id/first_fragment_tv_second_row"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_goneMarginBottom="16dp" />

        <TextView
            android:id="@+id/first_fragment_tv_second_row"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="16dp"
            android:layout_marginEnd="16dp"
            android:layout_marginBottom="8dp"
            android:fontFeatureSettings="smcp,c2sc"
            android:gravity="start"
            android:text="Second row"
            android:textColor="@color/colorWhite"
            android:textSize="16sp"
            app:layout_constrainedWidth="true"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/first_fragment_tv_first_row" />

    </androidx.constraintlayout.widget.ConstraintLayout>

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/colorPrimary"
        app:layout_collapseMode="pin"
        app:popupTheme="@style/AppTheme.PopupOverlay">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="First Fragment"
            android:textColor="@color/colorWhite"
            android:textSize="16sp"
            android:textStyle="bold" />

    </androidx.appcompat.widget.Toolbar>

</com.google.android.material.appbar.CollapsingToolbarLayout>

我创建了一个 issue on material-components-android Github 页面。

现在问题已经关闭,据说会在 this commit 中修复。当我进一步了解哪个版本的库包含该修复程序时,我将更新我的答案。