FrameLayout 布局,又叫幀布局,就是在屏幕上開辟一個區域以填充所有的組件,但是FrameLayout會將所有的組件都放在屏幕的左上角,而且所有的組件通過層疊的方式來進行顯示,也就是說,他們都是從從上角處開始放,然後一個覆蓋著一個的方式。
看看xml文件,我們只是把Linelayout換成了Framelayout其它都沒變。如下:
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:Android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <ImageView
- android:id="@+id/myimg"
- android:src="@drawable/mldn_3g"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <EditText
- android:id="@+id/myinput"
- android:text="請輸入您的姓名..."
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <Button
- android:id="@+id/mybut"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="按我" />
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- </FrameLayout>
結果如下: