<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="0" > <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="right" android:layout_weight="0" > <!-- android:gravity="right" 設置對齊方式,若是沒有子控件側做用到文本 android:orientation="vertical" 設置水平或者垂直佈局 android:layout_weight="0"設置佈局大小,總和好比1,1,你們平分,1,2就一個佔1/3,一個佔2/3,0表示控件本身的大小 --> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="肯定" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="取消" /> </LinearLayout> <!-- ######################## --> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:orientation="horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="fill_parent" android:background="#aa0000" android:text="紅色" android:gravity="center_horizontal|center_vertical" android:layout_weight="1" /> <TextView android:layout_width="wrap_content" android:layout_height="fill_parent" android:background="#00aa00" android:text="綠色" android:gravity="top|center_horizontal" android:layout_weight="1" /> <TextView android:layout_width="wrap_content" android:layout_height="fill_parent" android:background="#0000aa" android:text="藍色" android:gravity="bottom" android:layout_weight="1" /> <TextView android:layout_width="wrap_content" android:layout_height="fill_parent" android:background="#aaaa00" android:text="黃色" android:gravity="bottom|left" android:layout_weight="1" /> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:orientation="vertical" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="第一行" android:gravity="left" android:layout_weight="1" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="第二行" android:gravity="left" android:layout_weight="1" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="第三行" android:gravity="left" android:layout_weight="1" /> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="第四行" android:gravity="left" android:layout_weight="1" /> </LinearLayout> </LinearLayout>