(Biblioteca de soporte de diseño) CollapsingToolbarLayout - La barra de herramientas no se fija al contraer

Tengo problemas para integrar la Biblioteca de soporte de diseño en mi aplicación. Por alguna razón, la barra de herramientas colapsa con CollapsingToolbarLayout, y no la deja anclada como en el ejemplo Cheesesquare de Chris Banes.https://github.com/chrisbanes/cheesesquare

No hice nada diferente a mi diseño. De hecho, reemplacé mis estilos con los suyos y reduje su diseño. Me pregunto si el uso de Toolbar, en lugar de android.support.v7.widget.Toolbar está causando esto.

Aquí está el problema.

Aquí está mi XML de la sección AppBar.

<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">


    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/detail_backdrop_height"
        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"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="48dp"
            app:expandedTitleMarginEnd="64dp">

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                app:layout_collapseMode="parallax" />

            <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>

    ...

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

Respuestas a la pregunta(3)

Su respuesta a la pregunta