如何在Android布局中创建框架?

时间:2016-08-30 17:17:13

标签: android android-layout

在Androidstudio中,我需要将屏幕划分为两行框架。一行应在xml文件中包含三个colum框架。

Need to create this

1 个答案:

答案 0 :(得分:0)

使用具有相同layout_weight属性的水平线性布局。然后把它放在垂直线性布局中:

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <View
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content" />
        <View
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content" />
        <View
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="wrap_content" />
    </LinearLayout>
    <View
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>