使用自定义工具栏折叠工具栏布局

时间:2018-04-20 14:38:21

标签: android android-layout android-toolbar android-collapsingtoolbarlayout

我一直在Android中尝试使用CollapsingToolbarLayout。我试图在Toolbar崩溃时改变它的形状。 And like this when collapsed

我希望工具栏看起来something like this when collapsed。如果它不在Toolbar中,我可以通过为其创建自定义背景来实现正常CollapsingToolbarLayout,如上所示。但我无法将其设置为CollapsingToolbarLayout中的工具栏,因为设置背景只会使其显示在展开的视图中,然后以折叠的形式向上移动。

知道如何实现这一点吗?

CollapsingToolbar

的XML代码
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">


    <android.support.design.widget.AppBarLayout
        android:id="@+id/app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true"
        >

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:contentScrim="?attr/colorPrimary"
            android:fitsSystemWindows="true"
            app:titleEnabled="true"
            app:title="LOL1"
            app:expandedTitleGravity="center_horizontal"
            app:collapsedTitleGravity="center_horizontal"
            app:collapsedTitleTextAppearance="@color/colorAccent"
            >

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="250dp"
                android:scaleType="centerCrop"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax"
                android:id="@+id/image"
                android:src="@drawable/head"
                />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                app:layout_collapseMode="pin"
                />

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

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

Currently it looks like this when expanded [![见图片] [3]] [3]

[3]:

0 个答案:

没有答案