Android游戲開發系統控件-TabSpec與TabHost
今天學習了另一個比較特殊的控件:TabSpec(分頁),TabHost(分頁的集合)
TabHost相當於浏覽器中分頁的集合,而TabSpec則相當於浏覽器中的每個分頁;在Android中,每一個TabSpec分頁可以是一個組件,也可以是一個布局,然後將每個分頁裝入TabHost中,TabHost即可將其中的每個分頁一並顯示出來。
創建項目:TabProject
向項目資源中添加了兩張圖片資源:bg.png與bg2.png.
功能:實現在布局中進行頁面切換
項目運行結果截圖:
修改代碼:
=>>布局文件main.xml
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:background="@drawable/bg2">
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/btn1"
- android:id="@+id/btn1"
- />
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/et1"
- android:id="@+id/et1"
- />
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:id="@+id/mylayout"
- android:background="@drawable/bg"
- >
- <Button
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/btn2"
- />
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/et2"
- />
- </LinearLayout>
-
- </LinearLayout>