Advertisement
Guest User

Untitled

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