browser.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical">
  6. <TabHost
  7. android:layout_width="fill_parent"
  8. android:layout_height="fill_parent"
  9. android:id="@+id/browserTabHost"
  10. >
  11. <LinearLayout
  12. android:orientation="vertical"
  13. android:layout_width="fill_parent"
  14. android:layout_height="fill_parent"
  15. android:padding="5dp">
  16. <TabWidget
  17. android:id="@android:id/tabs"
  18. android:layout_width="fill_parent"
  19. android:layout_height="wrap_content" />
  20. <FrameLayout
  21. android:id="@android:id/tabcontent"
  22. android:layout_width="fill_parent"
  23. android:layout_height="fill_parent"
  24. android:padding="5dp" />
  25. </LinearLayout>
  26. </TabHost>
  27. </LinearLayout>