vTabHost:是一种非常实用的组件,可以很方便地在窗口上放置多个标签页,每个个标签页相当于获得了一个与外部容器相同大小的组件摆放区域,可以通过选项卡组件在容器中放置更多组件。
v常用方法:
       newTabSpec(String tag):创建选项卡。
       addTab(TabHost.TabSpec tabSpec):添加选项卡
v使用步骤:
    在界面布局中定义TabHost组件并为其定义内容
        Activity继承TabActivity
    调用getTabHost()方法获取TabHost对象
    通过TabHost对象的方法来创建选项卡、添加选项卡
 
布局文件:
 
 
  1. <?xml version="1.0" encoding="utf-8"?> 
  2. <TabHost xmlns:android="http://schemas.android.com/apk/res/android" 
  3. android:orientation="vertical" 
  4. android:layout_width="fill_parent" 
  5. android:layout_height="fill_parent" 
  6. > 
  7.         <LinearLayout   
  8.             android:id="@+id/tab01" 
  9.             android:orientation="vertical" 
  10.             android:layout_width="fill_parent" 
  11.             android:layout_height="fill_parent"> 
  12.             <TextView   
  13.                 android:layout_width="fill_parent" 
  14.                 android:layout_height="wrap_content" 
  15.                 android:text="第一个标签01"/> 
  16.             <TextView   
  17.                 android:layout_width="fill_parent" 
  18.                 android:layout_height="wrap_content" 
  19.                 android:text="第一个标签02"/> 
  20.         </LinearLayout> 
  21.           
  22.         <LinearLayout   
  23.             android:id="@+id/tab02" 
  24.             android:orientation="vertical" 
  25.             android:layout_width="fill_parent" 
  26.             android:layout_height="fill_parent"> 
  27.             <TextView   
  28.                 android:layout_width="fill_parent" 
  29.                 android:layout_height="wrap_content" 
  30.                 android:text="第二个标签01"/> 
  31.             <TextView   
  32.                 android:layout_width="fill_parent" 
  33.                 android:layout_height="wrap_content" 
  34.                 android:text="第二个标签02"/> 
  35.         </LinearLayout> 
  36.           
  37.         <LinearLayout   
  38.             android:id="@+id/tab03" 
  39.             android:orientation="vertical" 
  40.             android:layout_width="fill_parent" 
  41.             android:layout_height="fill_parent"> 
  42.             <TextView   
  43.                 android:layout_width="fill_parent" 
  44.                 android:layout_height="wrap_content" 
  45.                 android:text="第三个标签01"/> 
  46.             <TextView   
  47.                 android:layout_width="fill_parent" 
  48.                 android:layout_height="wrap_content" 
  49.                 android:text="第三个标签02"/> 
  50.         </LinearLayout> 
  51.  
  52. </TabHost> 

点击选项卡可以跳转到相应页面

 
  1. import android.app.TabActivity;  
  2. import android.os.Bundle;  
  3. import android.view.LayoutInflater;  
  4. import android.widget.TabHost;  
  5.  
  6. public class AndroidtestActivity14 extends TabActivity{  
  7.  
  8.     @Override 
  9.     protected void onCreate(Bundle savedInstanceState) {  
  10.         super.onCreate(savedInstanceState);  
  11.         //获得tabhost  
  12.         TabHost tabhost=getTabHost();  
  13.         //设置tabhost布局  
  14.         LayoutInflater.from(this).inflate(R.layout.main14, tabhost.getTabContentView(),true);  
  15.         //添加第一个标签  
  16.         tabhost.addTab(tabhost.newTabSpec("tab1")  
  17.                         .setIndicator("第一个标签")  
  18.                         .setContent(R.id.tab01));  
  19.         //添加第二个标签  
  20.         tabhost.addTab(tabhost.newTabSpec("tab2")  
  21.                         .setIndicator("第二个标签")  
  22.                         .setContent(R.id.tab02));  
  23.         //添加第三个标签  
  24.         tabhost.addTab(tabhost.newTabSpec("tab3")  
  25.                         .setIndicator("第三个标签")  
  26.                         .setContent(R.id.tab03));  
  27.     }  
  28.       
  29. }