| 12345678910111213141516171819202122232425262728293031323334 |
- <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/tabhost"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- <HorizontalScrollView
- android:id="@+id/hs_tabs"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:scrollbars="none"
- android:fillViewport="true"
- android:layout_alignParentBottom="true" >
- <TabWidget
- android:id="@android:id/tabs"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- </HorizontalScrollView>
- <FrameLayout
- android:id="@android:id/tabcontent"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_above="@+id/hs_tabs"
- android:layout_alignParentLeft="true" >
- </FrameLayout>
- </RelativeLayout>
- </TabHost>
|