在Androidstudio中,我需要将屏幕划分为两行框架。一行应在xml文件中包含三个colum框架。
答案 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>