project_files/Android-build/SDL-android-project/res/layout/vertical_tabs.xml
changeset 7444 2e31f114f57e
parent 7439 0a494f951dcf
child 7449 2e63537b44f3
equal deleted inserted replaced
7439:0a494f951dcf 7444:2e31f114f57e
     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="match_parent"
       
     5     android:layout_height="match_parent" >
       
     6 
       
     7     <LinearLayout
       
     8         android:layout_width="match_parent"
       
     9         android:layout_height="match_parent"
       
    10         android:orientation="horizontal" >
       
    11 
       
    12         <TabWidget
       
    13             android:id="@android:id/tabs"
       
    14             android:layout_width="wrap_content"
       
    15             android:layout_height="match_parent"
       
    16             android:layout_weight="0" />
       
    17 
       
    18         <FrameLayout
       
    19             android:id="@android:id/tabcontent"
       
    20             android:layout_width="0dip"
       
    21             android:layout_height="match_parent"
       
    22             android:layout_weight="1" />
       
    23     </LinearLayout>
       
    24 </TabHost>