TabWidget放置底部

 

  
  
  
  
  1. TabWidget我们应用中是经常用了,但是有的时候需要把它居于底部,那怎么实现这功能呢?  
  2. 其实相当简单,直接在xml里面就能搞定,实例如下:  
  3. <?xml version="1.0" encoding="utf-8"?>  
  4. <TabHost xmlns:android="http://schemas.android.com/apk/res/android" 
  5.     android:id="@android:id/tabhost" 
  6.     android:layout_width="fill_parent" 
  7.     android:layout_height="fill_parent">  
  8.     <LinearLayout  
  9.         android:orientation="vertical" 
  10.         android:layout_width="fill_parent" 
  11.         android:layout_height="fill_parent">        
  12.         <FrameLayout  
  13.             android:id="@android:id/tabcontent" 
  14.             android:layout_width="fill_parent" 
  15.             android:layout_height="fill_parent" 
  16.             android:layout_weight="1"/>            
  17.         <TabWidget  
  18.             android:id="@android:id/tabs" 
  19.             android:layout_width="fill_parent" 
  20.             android:layout_height="wrap_content"/>      
  21.     </LinearLayout>  
  22. </TabHost> 

 

你可能感兴趣的:(android,职场,tab,休闲,tabwidget)