相對布局:RelativeLayout
相對布局比較容易實現視窗的複雜布局,具體見如下代碼
<?xml version="1.0" encoding="utf-8"?><!-- 第一類,子視窗擺放的相對位置android:layout_above ~~~~~~~~~~將該控制項的底部放置於給定ID的控制項之上android:layout_below ~~~~~~~~~~將該控制項的頂部放置於給定ID的控制項之下android:layout_toLeftOf ~~~~~~~將該控制項的右邊緣和給定ID的控制項的左邊緣對齊android:layout_toRightOf ~~~~~~將該控制項的左邊緣和給定ID的控制項的右邊緣對齊第二類,子視窗相對於其他子視窗的邊緣對齊android:layout_alignBaseline ~~該控制項的baseline和給定ID的控制項的baseline對齊android:layout_alignTop ~~~~~~~該控制項的頂部邊緣與給定ID控制項的的頂部邊緣對齊android:layout_alignBottom ~~~~該控制項的底部邊緣與給定ID控制項的的底部邊緣對齊android:layout_alignLeft ~~~~~~該控制項的左邊緣與給定ID控制項的的左邊緣對齊android:layout_alignRight ~~~~~該控制項的右邊緣與給定ID控制項的的右邊緣對齊第三類,子視窗相對於父視窗的邊緣對齊android:alignParentTop ~~~~~如果該值為true,則將該控制項的頂部和父控制項的頂部對齊android:alignParentBottom ~~~~~如果該值為true,則將該控制項的底部和父控制項的底部對齊android:alignParentLeft ~~~~~~~如果該值為true,則將該控制項的左邊和父控制項的左邊對齊android:alignParentRight ~~~~~如果該值為true,則將該控制項的右邊和父控制項的右邊對齊android:layout_centerHorizontal如果為true,則該控制項將被放置於水平方向的中央android:layout_centerInParent 如果為true,則該控制項將被放置於父控制項水平方向和垂直方向的中央android:layout_centerVertical 如果為true,則該控制項將被放置於垂直方向的中央 --><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="10px" > <TextView android:id="@+id/label" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Type here:"/> <EditText android:id="@+id/entry" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@android:drawable/editbox_background" android:layout_below="@+id/label"/> <Button android:id="@+id/ok" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/entry" android:layout_alignParentRight="true" android:layout_marginLeft="10px" android:text="OK"/> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/entry" android:layout_toLeftOf="@+id/ok" android:layout_alignTop="@+id/ok" android:text="Cancel"/></RelativeLayout>