DrawerLayout + CollapsingToolbar + Fragments;工具栏无法折叠或显示图片

时间:2015-10-14 18:27:04

标签: android android-fragments android-collapsingtoolbarlayout

正如标题所暗示的那样,我的活动有一个FrameLayout,其中包含Fragments [我不使用标签,只是交易]。我还有NavigationDrawerToolbar。所有这些都很好。

问题在于我尝试在CollapsingToolbarLayout布局中添加Activity并在RecyclerView卷轴中设置Fragment并控制崩溃CollapsingToolbarLayout

通过下面显示的设置,我可以使用NavigationDrawer,查看Toolbar和展开的CollapsingToolbarLayout内部没有图片(奇数问题)。我将Fragment加载到包含带有10个测试视图的FrameLayout的{​​{1}}中。这在CollapsingToolbar下面滚动得很好,但它不会崩溃。

活动布局XML

RecyclerView

片段布局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>

我不明白为什么这不起作用,而且我已经完成了大量的文档和示例而没有运气。任何帮助或建议将不胜感激。

2 个答案:

答案 0 :(得分:2)

事实证明,我用于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开始完美运作。

答案 1 :(得分:1)

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

从codepath中查看本教程:https://guides.codepath.com/android/Handling-Scrolls-with-CoordinatorLayout

你可以使用app:layout_behavior =&#34; @ string / appbar_scrolling_view_behavior&#34;在RecyclerView上你有片段。