activity_detail.xml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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:fillViewport="true"
  14. android:layout_alignParentBottom="true" >
  15. <TabWidget
  16. android:id="@android:id/tabs"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. />
  20. </HorizontalScrollView>
  21. <FrameLayout
  22. android:id="@android:id/tabcontent"
  23. android:layout_width="fill_parent"
  24. android:layout_height="fill_parent"
  25. android:layout_above="@+id/hs_tabs"
  26. android:layout_alignParentLeft="true" >
  27. </FrameLayout>
  28. </RelativeLayout>
  29. </TabHost>