Comment envelopper Coordonnateur de la Mise en page dans un LinearLayout?

Im essayant d'utiliser le nouveau modèle Android Bibliothèque CoordinatorLayout à l'intérieur d'une autre mise en page. Le CoordinatorLayout contient un RecyclerView. Ce que Im essayant de faire est de placer un simple LinearLayout ci-dessous la CoordinatorLayout. Cette disposition doit être placé au-dessous de la CoordinatorLayout. C'est XML Im en utilisant:

<LinearLayout 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:orientation="vertical">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="fill_parent">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fitsSystemWindows="true">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary" />

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

        <android.support.v7.widget.RecyclerView
            android:id="@+id/conversation_recyclerview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:orientation="horizontal">

        <EditText
            android:layout_width="fill_parent"
            android:layout_height="match_parent" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:src="@drawable/ic_send_white_36dp" />

    </LinearLayout>
</LinearLayout>

Comme vous pouvez le voir, Im essayant d'envelopper le CoordinatorLayout l'intérieur d'un autre LinearLayout. Cependant, sur l'écran de la deuxième partie de la mise en page ne marche pas même rendu.

OriginalL'auteur stamppot | 2015-06-18