答案 0 :(得分:1)
我已使用线性布局回答了您的查询。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:weightSum="10"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context=".ActivityState">
<LinearLayout
android:layout_weight="6"
android:layout_width="match_parent"
android:layout_height="0dp">
<LinearLayout
android:orientation="horizontal"
android:weightSum="2"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent">
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:weightSum="2"
android:layout_width="0dp"
android:layout_weight="1"
android:orientation="vertical"
android:layout_height="match_parent">
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp" />
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_weight="2"
android:layout_width="match_parent"
android:layout_height="0dp">
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<LinearLayout
android:layout_weight="2"
android:layout_width="match_parent"
android:layout_height="0dp">
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<Button android:text="Button"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
</LinearLayout>
希望这有帮助! :)