Advertisement
lu4kedr

tabs_xml

Apr 7th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.88 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.  
  7.     <LinearLayout
  8.        android:orientation="vertical"
  9.        android:layout_width="fill_parent"
  10.        android:layout_height="fill_parent">
  11.  
  12.         <TabWidget
  13.            android:id="@android:id/tabs"
  14.            android:layout_width="fill_parent"
  15.            android:layout_height="wrap_content"
  16.            android:layout_weight="0"
  17.            android:layout_marginTop="-4dp"/>
  18.  
  19.         <FrameLayout
  20.            android:id="@android:id/tabcontent"
  21.            android:layout_width="fill_parent"
  22.            android:layout_height="0dip"
  23.            android:layout_weight="0.7">
  24.  
  25.         </FrameLayout>
  26.  
  27.  
  28.     </LinearLayout>
  29.  
  30. </TabHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement