闲着没事 给你写了
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFF"
android:orientation="horizontal" >
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="BUTTON1" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.5"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text01"
android:textColor="#000" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text01"
android:textColor="#000" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text01"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text02"
android:textColor="#000" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text02"
android:textColor="#000" />
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Text02"
android:textColor="#000" />
</LinearLayout>
</LinearLayout>
<Button
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:text="BUTTON2" />
</LinearLayout>
2024-09-04 广告