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 <LinearLayout 7 android:orientation="vertical" 8 android:layout_width="match_parent" 9 android:layout_height="match_parent" 10 android:padding="5dp"> 11 <TabWidget 12 android:id="@android:id/tabs" 13 android:layout_width="match_parent" 14 android:layout_height="wrap_content" /> 15 <FrameLayout 16 android:id="@android:id/tabcontent" 17 android:layout_width="match_parent" 18 android:layout_height="match_parent" 19 /> 20 </LinearLayout> 21</TabHost> 22