Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2010
2,166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.     xmlns:android="http://schemas.android.com/apk/res/android"
  4.     android:id="@+id/LinearLayout01"
  5.     android:orientation="vertical"
  6.     android:layout_width="fill_parent"
  7.     android:layout_height="fill_parent"
  8.     android:gravity="center_horizontal">
  9.     <TabHost
  10.         android:id="@android:id/tabhost"
  11.         android:layout_width="fill_parent"
  12.         android:layout_height="fill_parent">
  13.         <LinearLayout
  14.             android:orientation="vertical"
  15.             android:layout_width="fill_parent"
  16.             android:layout_height="fill_parent">
  17.             <FrameLayout
  18.                 android:id="@android:id/tabcontent"
  19.                 android:layout_weight="1.0"
  20.                 android:layout_height="fill_parent"
  21.                 android:layout_width="fill_parent">
  22.             </FrameLayout>
  23.             <TabWidget
  24.                 android:id="@android:id/tabs"
  25.                 android:layout_height="wrap_content"
  26.                 android:layout_width="fill_parent"
  27.                 android:layout_gravity="bottom">
  28.             </TabWidget>
  29.         </LinearLayout>
  30.  
  31. </TabHost>
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement