DrawerLayout + CollapsingToolbar + 片段;工具栏不会折叠或显示图像

DrawerLayout + CollapsingToolbar + Fragments; Toolbar won't collapse or show image

如标题所示,我有一个 activity,其中有一个 FrameLayout 用来存放我的 Fragments [我没有使用标签,只是交易]。我还有一个 NavigationDrawerToolbar。所有这些都很好。

问题是我正在尝试将 CollapsingToolbarLayout 添加到 Activity 布局并在 Fragment 滚动中添加 RecyclerView 并控制折叠CollapsingToolbarLayout.

通过如下所示的设置,我可以使用 NavigationDrawer,查看 Toolbar 和内部没有图像的扩展 CollapsingToolbarLayout(那里有奇怪的问题)。我将 Fragment 加载到 FrameLayout 中,其中包含具有 10 个测试视图的 RecyclerView。这可以在 CollapsingToolbar 下方正常滚动,但不会折叠。

Activity 布局 XML

<android.support.v4.widget.DrawerLayout
    android:id="@+id/dl_drawer_layout"
    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"
    android:fitsSystemWindows="true">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/cl_dashboard"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/abl_dashboard"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:fitsSystemWindows="true"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/ctb_dashboard"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:contentScrim="@color/the_color"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <ImageView
                    android:id="@+id/iv_dashboard_header"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="centerCrop"
                    android:src="@mipmap/the_image"
                    android:fitsSystemWindows="true"
                    app:layout_collapseMode="parallax"/>

                <include
                    android:id="@+id/toolbar"
                    layout="@layout/overlay_toolbar"
                    app:layout_collapseMode="pin"/>

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

        <FrameLayout
            android:id="@+id/fl_dashboard_fragmentframe"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

        </FrameLayout>

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

    <android.support.design.widget.NavigationView
        android:id="@+id/nv_navigation_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/overlay_drawer_header"
        app:menu="@menu/menu_drawer"/>
</android.support.v4.widget.DrawerLayout>

片段布局XML

<android.support.v7.widget.RecyclerView
    android:id="@+id/rv_fragment_dashboardhome"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

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

我不明白为什么这不起作用,我 运行 查阅了大量文档和示例,但没有成功。任何帮助或建议将不胜感激。

app:layout_behavior 应应用于 RecyclerView 或任何其他能够嵌套滚动的视图,例如 NestedScrollView。

从代码路径查看本教程:https://guides.codepath.com/android/Handling-Scrolls-with-CoordinatorLayout

您可以在 fragment 中的 RecyclerView 上使用 app:layout_behavior="@string/appbar_scrolling_view_behavior"。

事实证明,我用于 Toolbar 的布局没有正确的高度值。

overlay_toolbar.xml

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    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="wrap_content"
    android:background="@color/get_blue"
    android:elevation="5dp"
    android:minHeight="?attr/actionBarSize"
    app:theme="@style/actionbar_getblue">

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

对 overlay_toolbar 的调整包括在 Activity XML

中调用
<include
    android:id="@+id/toolbar"
    layout="@layout/overlay_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    app:layout_collapseMode="pin"/>

在对高度进行单一调整后,CollapsingToolbarLayout 开始完美运行。