Android开发:制作底部选项卡TabHost

最重要的就是FrameLayout的属性Android:layout_weight="1" ,只要稍微布局即可、其他的和顶部TabHost一样

  1. <TabHost  
  2.     xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:id="@android:id/tabhost"  
  4.     android:layout_width="fill_parent"  
  5.     android:layout_height="fill_parent">  
  6.     <LinearLayout  
  7.         android:orientation="vertical"  
  8.         android:layout_width="fill_parent"  
  9.         android:layout_height="fill_parent">  
  10.       <!--  android:layout_weight="1"  -->  
  11.         <FrameLayout  
  12.             android:id="@android:id/tabcontent"  
  13.             android:layout_width="fill_parent"  
  14.             android:layout_height="fill_parent"  
  15.             android:layout_weight="1" />  
  16.         <TabWidget  
  17.             android:id="@android:id/tabs"  
  18.             android:layout_width="fill_parent"  
  19.             android:layout_height="wrap_content" />  
  20.     </LinearLayout>  
  21. </TabHost>  

相关推荐