tabactivity.xml.svn-base 811 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TabHost 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. android:orientation="vertical" >
  7. <RelativeLayout android:id="@+id/contentLayout"
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent">
  10. <FrameLayout android:id="@android:id/tabcontent"
  11. android:layout_width="fill_parent"
  12. android:layout_height="fill_parent"
  13. android:layout_above="@android:id/tabs"
  14. />
  15. <TabWidget
  16. android:id="@android:id/tabs"
  17. android:layout_width="fill_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_alignParentBottom="true"
  20. />
  21. </RelativeLayout>
  22. </TabHost>