android TabHost 使用

TabHost的实现有两种方式,第一种继承TabActivity,从TabActivity中用getTabHost()方法获取TabHost。各个Tab中的内容在布局文件中定义就行了。

mainActivity.xml

  1. private TabHost myTabHost;  
  2.     @Override  
  3.     public void onCreate(Bundle savedInstanceState) {  
  4.         super.onCreate(savedInstanceState);  
  5.         //setContentView(R.layout.main);  
  6.        myTabHost = this.getTabHost();  
  7.         LayoutInflater.from(this).inflate(R.layout.main,  
  8.                 myTabHost.getTabContentView(), true);  
  9.         myTabHost.addTab(myTabHost  
  10.                 .newTabSpec("选项卡1")  
  11.                 .setIndicator("选项卡1",  
  12.                         getResources().getDrawable(R.drawable.img01))  
  13.                 .setContent(R.id.ll01));  
  14.         myTabHost.addTab(myTabHost  
  15.                 .newTabSpec("选项卡2")  
  16.                 .setIndicator("选项卡2",  
  17.                         getResources().getDrawable(R.drawable.img02))  
  18.                 .setContent(R.id.ll01));  
  19.         myTabHost.addTab(myTabHost  
  20.                 .newTabSpec("选项卡3")  
  21.                 .setIndicator("选项卡3",  
  22.                         getResources().getDrawable(R.drawable.img03))  
  23.                 .setContent(R.id.ll03));  
  24.     }  
Tab内容布局文件:

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:orientation="vertical" android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent">  
  5.     <LinearLayout android:id="@+id/ll01" android:layout_width="fill_parent"  
  6.         android:layout_height="fill_parent" android:gravity="center_horizontal"  
  7.         android:orientation="vertical">  
  8.         <EditText android:id="@+id/widget34" android:layout_width="fill_parent"  
  9.             android:layout_height="wrap_content" android:text="EditText"  
  10.             android:textSize="18sp">  
  11.         </EditText>  
  12.         <Button android:id="@+id/widget30" android:layout_width="wrap_content"  
  13.             android:layout_height="wrap_content" android:text="Button">  
  14.         </Button>  
  15.     </LinearLayout>  
  16.     <LinearLayout android:id="@+id/ll02" android:layout_width="fill_parent"  
  17.         android:layout_height="fill_parent" android:gravity="center_horizontal"  
  18.         android:orientation="vertical">  
  19.         <AnalogClock android:id="@+id/widget36"  
  20.             android:layout_width="wrap_content" android:layout_height="wrap_content">  
  21.         </AnalogClock>  
  22.     </LinearLayout>  
  23.     <LinearLayout android:id="@+id/ll03" android:layout_width="fill_parent"  
  24.         android:layout_height="fill_parent" android:gravity="center_horizontal"  
  25.         android:orientation="vertical">  
  26.         <RadioGroup android:id="@+id/widget43"  
  27.             android:layout_width="166px" android:layout_height="98px"  
  28.             android:orientation="vertical">  
  29.             <RadioButton android:id="@+id/widget44"  
  30.                 android:layout_width="wrap_content" android:layout_height="wrap_content"  
  31.                 android:text="RadioButton">  
  32.             </RadioButton>  
  33.             <RadioButton android:id="@+id/widget45"  
  34.                 android:layout_width="wrap_content" android:layout_height="wrap_content"  
  35.                 android:text="RadioButton">  
  36.             </RadioButton>  
  37.         </RadioGroup>  
  38.     </LinearLayout>  
  39. </FrameLayout>  

android TabHost 使用_第1张图片

第二种方式,不继承TabActivity,在布局文件中定义TabHost即可,但是TabWidget的id必须是@android:id/tabs,FrameLayout的id必须是@android:id/tabcontent。

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  3.     android:id="@+id/hometabs"  
  4.     android:orientation="vertical"  
  5.     android:layout_width="fill_parent"    
  6.     android:layout_height="fill_parent">   
  7.     <TabHost android:id="@+id/tabhost"  
  8.          android:layout_width="fill_parent"  
  9.          android:layout_height="wrap_content">  
  10.          <LinearLayout  
  11.             android:orientation="vertical"  
  12.             android:layout_width="fill_parent"  
  13.             android:layout_height="fill_parent">  
  14.               
  15.              <TabWidget android:id="@android:id/tabs"   
  16.               android:orientation="horizontal"  
  17.               android:layout_width="fill_parent"  
  18.               android:layout_height="wrap_content">  
  19.             </TabWidget>  
  20.            
  21.              <FrameLayout android:id="@android:id/tabcontent"  
  22.                   android:layout_width="wrap_content"  
  23.                   android:layout_height="wrap_content">  
  24.                       <TextView android:id="@+id/view1"  
  25.                         android:layout_width="fill_parent"  
  26.                         android:layout_height="fill_parent" android:text="Tab1"/>  
  27.                     <TextView android:id="@+id/view2"  
  28.                         android:layout_width="fill_parent"  
  29.                         android:layout_height="fill_parent" android:text="Tab2"/>  
  30.                     <TextView android:id="@+id/view3"  
  31.                         android:layout_width="fill_parent"  
  32.                         android:layout_height="fill_parent" android:text="Tab3"/>  
  33.              </FrameLayout>  
  34.            
  35.          </LinearLayout>  
  36.     </TabHost>  
  37. </LinearLayout>  
mainActivity

  1. @Override  
  2.     protected void onCreate(Bundle savedInstanceState) {  
  3.         super.onCreate(savedInstanceState);  
  4.         setContentView(R.layout.main);  
  5.         TabHost tabHost = (TabHost) findViewById(R.id.tabhost);  
  6.         tabHost.setup();  
  7.         TabWidget tabWidget = tabHost.getTabWidget();  
  8.         tabHost.addTab(tabHost  
  9.                 .newTabSpec("tab1")  
  10.                 .setIndicator("tab1",  
  11.                         getResources().getDrawable(R.drawable.img01))  
  12.                 .setContent(R.id.view1));  
  13.         tabHost.addTab(tabHost  
  14.                 .newTabSpec("tab2")  
  15.                 .setIndicator("tab2",  
  16.                         getResources().getDrawable(R.drawable.img02))  
  17.                 .setContent(R.id.view2));  
  18.         tabHost.addTab(tabHost  
  19.                 .newTabSpec("tab3")  
  20.                 .setIndicator("tab3",  
  21.                         getResources().getDrawable(R.drawable.img03))  
  22.                 .setContent(R.id.view3));  

你可能感兴趣的:(android TabHost 使用)