activity_search_history.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/tabhost"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent" >
  6. <RelativeLayout
  7. android:layout_width="fill_parent"
  8. android:layout_height="fill_parent" >
  9. <TabWidget
  10. android:id="@android:id/tabs"
  11. android:layout_width="fill_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_alignParentBottom="true" >
  14. </TabWidget>
  15. <FrameLayout
  16. android:id="@android:id/tabcontent"
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:layout_above="@android:id/tabs"
  20. android:layout_alignParentLeft="true" >
  21. <FrameLayout
  22. android:id="@+id/tab1"
  23. android:layout_width="fill_parent"
  24. android:layout_height="fill_parent" >
  25. </FrameLayout>
  26. <FrameLayout
  27. android:id="@+id/tab2"
  28. android:layout_width="fill_parent"
  29. android:layout_height="fill_parent" >
  30. </FrameLayout>
  31. </FrameLayout>
  32. </RelativeLayout>
  33. </TabHost>