activity_apex.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <ImageView
  9. android:id="@+id/imageView1"
  10. android:layout_width="fill_parent"
  11. android:layout_height="wrap_content"
  12. android:layout_above="@android:id/tabs"
  13. android:scaleType="fitXY"
  14. android:src="@drawable/bg_1" />
  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. </TabWidget>
  21. <FrameLayout
  22. android:id="@android:id/tabcontent"
  23. android:layout_width="fill_parent"
  24. android:layout_height="fill_parent"
  25. android:layout_above="@android:id/tabs"
  26. android:layout_alignParentLeft="true" >
  27. <FrameLayout
  28. android:id="@+id/tab1"
  29. android:layout_width="fill_parent"
  30. android:layout_height="fill_parent" >
  31. </FrameLayout>
  32. <!-- <FrameLayout
  33. android:id="@+id/tab2"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent" >
  36. </FrameLayout> -->
  37. <FrameLayout
  38. android:id="@+id/tab3"
  39. android:layout_width="fill_parent"
  40. android:layout_height="fill_parent" >
  41. </FrameLayout>
  42. </FrameLayout>
  43. </RelativeLayout>
  44. </TabHost>