tab_main.xml 814 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TabHost
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@android:id/tabhost"
  5. android:layout_width="match_parent"
  6. android:layout_height="wrap_content" >
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:orientation="vertical" >
  11. <TabWidget
  12. android:id="@android:id/tabs"
  13. android:layout_width="match_parent"
  14. android:layout_height="66dip"
  15. android:gravity="top" >
  16. </TabWidget>
  17. <FrameLayout
  18. android:id="@android:id/tabcontent"
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content" >
  21. </FrameLayout>
  22. </LinearLayout>
  23. </TabHost>