使用CollapsingToolbarLayout,如何将其设置为支持操作栏?

Using CollapsingToolbarLayout, how can I set it as the support action bar?

按照 this 教程,我有这个 CollapsingToolbarLayout:

<android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed">

        <ImageView
            android:id="@+id/blurred_background"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:ignore="ContentDescription" />

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:src="@drawable/defaultimage"
            app:layout_collapseMode="parallax"
            app:layout_collapseParallaxMultiplier="0.7"
            tools:ignore="ContentDescription"
            android:id="@+id/profilePicture" />


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

但是,我需要使用 setSupportActionBar() 以便我可以使用 setTitle()setHomeAsUpEnabled() 等方法。但是,显然 CollapsingToolbarLayout 不能转换为 Toolbar,并且 setSupportActionBar() 方法只接受 Toolbar 方法。

是否有替代的设置方法?

尝试做这样的事情:

 <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/collapsing_toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:expandedTitleMarginBottom="70dp"
        app:expandedTitleMarginEnd="10dp"
        app:expandedTitleMarginStart="48dp"
        app:layout_collapseParallaxMultiplier="0.5"
        app:layout_scrollFlags="scroll|enterAlways|snap">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="160dp"
            android:gravity="bottom"
            android:orientation="vertical"
            app:layout_collapseMode="parallax">

            <ImageView
              android:id="@+id/blurred_background"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              tools:ignore="ContentDescription" />

           <ImageView
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:adjustViewBounds="true"
              android:src="@drawable/defaultimage"
              app:layout_collapseMode="parallax"
              app:layout_collapseParallaxMultiplier="0.7"
              tools:ignore="ContentDescription"
              android:id="@+id/profilePicture" />
        </LinearLayout>

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            app:contentInsetLeft="0dp"
            app:contentInsetStart="0dp"
            app:contentInsetStartWithNavigation="0dp"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" />
    </android.support.design.widget.CollapsingToolbarLayout>

在 LinearLayout/RelativeLayout 中添加图像视图并在 CollapsingToolbarLayout 中添加工具栏以实现工具栏功能。