Android包含在布局的底部

时间:2014-04-14 18:22:40

标签: android include relativelayout

我正在尝试将布局附加到每个活动的底部,如下所示:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

<include
    android:id="@+id/bottom_Menu"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    layout="@layout/bottom_menu" />


</RelativeLayout>

然而,它并没有把它放在最底层。

---- ----- EDIT

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_gravity="center" >

        <ToggleButton
            android:id="@+id/scheduleToggle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/SchedueToggle" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_gravity="center" >

        <ToggleButton
            android:id="@+id/exhibitorsToggle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/exhibitorsToggle" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_gravity="center" >

        <ToggleButton
            android:id="@+id/speakersToggle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/speakersToggle" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_gravity="center" >

        <ToggleButton
            android:id="@+id/MapsToggle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/MapsToggle" />

    </LinearLayout>

    <LinearLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_weight="1"
        android:gravity="center"
        android:layout_gravity="center" >

        <ToggleButton
            android:id="@+id/OtherToggle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/OtherToggle" />

    </LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:2)

您不需要将其包装在布局中,include需要为其他layout_ *字段指定layout_width和layout_height才能工作。来自docs

  

但是,如果要使用。覆盖布局属性   标签,你必须   按顺序覆盖android:layout_height和android:layout_width   使其他布局属性生效。

所以你的更新布局:

<include
    android:id="@+id/bottom_Menu"
    android:layout_alignParentBottom="true"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    layout="@layout/bottom_menu" />