tabhost_public.xml 1004 B

123456789101112131415161718192021222324252627282930
  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="fill_parent"
  6. android:layout_height="fill_parent">
  7. <LinearLayout android:id="@+id/LinearLayout"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent"
  10. android:orientation="vertical"
  11. android:background="#919191">
  12. <TabWidget
  13. android:id="@android:id/tabs"
  14. android:layout_width="fill_parent"
  15. android:layout_height="wrap_content"/>
  16. <FrameLayout
  17. android:id="@android:id/tabcontent"
  18. android:layout_width="fill_parent"
  19. android:layout_height="fill_parent" >
  20. <ListView android:id="@+id/tabhost_public_listview"
  21. android:layout_width="fill_parent"
  22. android:layout_height="fill_parent">
  23. </ListView>
  24. <ListView android:id="@+id/tabhost_public_listview_tab2"
  25. android:layout_width="fill_parent"
  26. android:layout_height="fill_parent">
  27. </ListView>
  28. </FrameLayout>
  29. </LinearLayout>
  30. </TabHost>