activity_detail.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/tabhost"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent" >
  5. <RelativeLayout
  6. android:layout_width="fill_parent"
  7. android:layout_height="fill_parent" >
  8. <HorizontalScrollView
  9. android:id="@+id/hs_tabs"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:scrollbars="none"
  13. android:layout_alignParentBottom="true" >
  14. <TabWidget
  15. android:id="@android:id/tabs"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. />
  19. </HorizontalScrollView>
  20. <FrameLayout
  21. android:id="@android:id/tabcontent"
  22. android:layout_width="fill_parent"
  23. android:layout_height="fill_parent"
  24. android:layout_above="@+id/hs_tabs"
  25. android:layout_alignParentLeft="true" >
  26. </FrameLayout>
  27. </RelativeLayout>
  28. </TabHost>