infortab.xml 833 B

12345678910111213141516171819202122232425
  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
  8. android:layout_width="fill_parent"
  9. android:layout_height="fill_parent" >
  10. <TabWidget
  11. android:id="@android:id/tabs"
  12. android:layout_alignParentTop="true"
  13. android:layout_width="fill_parent"
  14. android:layout_height="wrap_content" />
  15. <FrameLayout
  16. android:id="@android:id/tabcontent"
  17. android:layout_below="@android:id/tabs"
  18. android:layout_width="fill_parent"
  19. android:layout_height="fill_parent" />
  20. </RelativeLayout>
  21. </TabHost>