TabHost注意

 

不多说,直接列出来了。新手开发的时候注意一下吧!

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android=" http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id ="@android:id/tabhost"
>
 <LinearLayout
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
   <TabWidget
   android:id ="@android:id/tabs"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
   />
   <FrameLayout
   android:id ="@android:id/tabcontent"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   >
    <TextView
    android:id="@+id/tabtv1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="this is a tab">
    </TextView>
    <TextView
    android:id="@+id/tabtv2"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="this is 2 tab">
    </TextView>
    <TextView
    android:id="@+id/tabtv3"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:text="this is 3 tab">
    </TextView>
   </FrameLayout>
 </LinearLayout>
</TabHost>

你可能感兴趣的:(TabHost注意)