用这个例子来解决他/她的问题
Tab 的这个主 xml 文件
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget`enter code here`
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"
android:padding="5dp" />
</LinearLayout>
文件
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_layout);
Resources ressources = getResources();
TabHost tabHost = getTabHost();
Intent intentAndroid = new Intent().setClass(this,FirstClass.class);
TabSpec tab1 = tabHost
.newTabSpec("Android")
.setIndicator("",ressources.getDrawable(R.drawable.icon_android_config))
.setContent(intentAndroid);
Intent intentAndroid2 = new Intent().setClass(this,FirstClass.class);
TabSpec tab2 = tabHost
.newTabSpec("Android")
.setIndicator("",ressources.getDrawable(R.drawable.icon))
.setContent(intentAndroid2);
tabHost.addTab(tab1);
tabHost.addTab(tab2);
tabHost.setCurrentTab(0);
}