标签:
TabHost 也就相当于Windows下的选项框
有两种实现方式
1. 继承TabActivity (已经废弃):从TabActivity中用getTabHost()方法获取TabHost
2. 在布局文件中定义TabHost,但是TabWidget的id必须是@android:id/tabs,FrameLayout的id必须是@android:id/tabcontent.
主要介绍第二种方法是的使用
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/hometabs" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TabHost android:id="@+id/tabhost" android:layout_width="fill_parent" android:layout_height="wrap_content" > <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TabWidget android:id="@android:id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > </TabWidget> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/text" android:layout_width="match_parent" android:layout_height="match_parent" android:text="第一个选项框" /> <TextView android:id="@+id/photo" android:layout_width="match_parent" android:layout_height="match_parent" android:text="第二个选项框" /> <TextView android:id="@+id/video" android:layout_width="match_parent" android:layout_height="match_parent" android:text="第三个选项框" /> <TextView android:id="@+id/movie" android:layout_width="match_parent" android:layout_height="match_parent" android:text="我是电影" /> </FrameLayout> </LinearLayout> </TabHost> </LinearLayout>
标签:
原文地址:http://www.cnblogs.com/SM-t/p/4300570.html