如何在LinearLayout中包装协调器布局?

时间:2015-06-18 12:47:40

标签: android android-layout coordinator-layout

我试图在另一个布局中使用新的Android Design Library的CoordinatorLayout。 CoordinatorLayout包含RecyclerView。我试图做的是在CoordinatorLayout下面放置一个简单的LinearLayout。此布局应放在CoordinatorLayout下方。这是我使用的XML:

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

如您所见,我试图将CoordinatorLayout包装在另一个LinearLayout中。但是,在屏幕上,布局的第二部分甚至无法呈现。

1 个答案:

答案 0 :(得分:13)

这是因为CoordinatorLayoutlayout_height="match_parent"。这意味着它占据了屏幕的整个大小,而LinearLayout 呈现,但它低于CoordinatorLayout和屏幕外。

解决此问题的一种简单方法是设置weight的{​​{1}}以填充父级布局,但留出空间以显示页脚CoordinatorLayout。这将是

LinearLayout

但这不是理想的方式,所以我建议将<android.support.design.widget.CoordinatorLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"> 作为根元素,并将CoordinatorLayout放在它所属的LinearLayout之下。由于您的页脚RecyclerView具有固定的高度,因此可以轻松完成

LinearLayout