1:線性佈局 2.相對佈局: 這兩種最常用,其他的如下: 3.幀佈局:重疊在一起 後兩種不常用:表格、絕對佈局,實際開發已過時 ...
1:線性佈局
<?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="match_parent" android:orientation="vertical" > <TextView android:id="@+id/tv_number" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:text="請輸入電話號碼" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入電話號碼" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="撥打" /> </LinearLayout>
2.相對佈局:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/tv_number" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:text="請輸入電話號碼" /> <EditText android:id="@+id/et_number" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入電話號碼" android:layout_below="@id/tv_number" /> <Button android:id="@+id/btn1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="撥打" android:layout_below="@id/et_number" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="撥打的右邊" android:layout_toRightOf="@id/btn1" android:layout_below="@id/et_number" /> </RelativeLayout>
這兩種最常用,其他的如下:
3.幀佈局:重疊在一起
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/tv_number" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="20dp" android:text="請輸入電話號碼" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入電話號碼" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="撥打" /> </FrameLayout>
後兩種不常用:表格、絕對佈局,實際開發已過時