RelativeLayout

<RelativeLayout
            android:id="@+id/top"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:background="#f00">
    </RelativeLayout>
    <RelativeLayout
            android:id="@+id/center"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:layout_below="@id/top"
            android:layout_above="@+id/bottom"
            android:background="#00f">
    </RelativeLayout>
    <RelativeLayout
            android:id="@+id/bottom"
            android:layout_width="match_parent"
            android:layout_height="100dp"
            android:layout_alignParentBottom="true"
            android:background="#0f0">
    </RelativeLayout>

image.png

LinearLayout

<!--头部布局-->
    <LinearLayout android:layout_width="match_parent"
                  android:layout_height="50dp"
                  android:background="#f0f"/>


    <!--中间布局-->
    <LinearLayout android:layout_width="match_parent"
                  android:layout_height="0dp"
                  android:layout_weight="1"
                  android:orientation="horizontal"
                  android:gravity="center"
                  android:background="#ff0">

        <Button android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="按钮一"
                android:layout_weight="1"/>
        <Button android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="按钮二"
                android:layout_weight="2"/>
        <Button android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="按钮三"
                android:layout_weight="1"/>

    </LinearLayout>

    <!--底部布局-->
    <LinearLayout android:layout_width="match_parent"
                  android:layout_height="50dp"
                  android:background="#f00"/>

image.png


阿南
20 声望7 粉丝