1 <merge xmlns:android="http://schemas.android.com/apk/res/android" 2 android:id="@+id/main" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent"> 5 6 <TabHost 7 android:id="@android:id/tabhost" 8 android:layout_width="fill_parent" 9 android:layout_height="fill_parent"> 10 <LinearLayout 11 android:orientation="vertical" 12 android:layout_width="fill_parent" 13 android:layout_height="fill_parent"> 14 <TabWidget 15 android:id="@android:id/tabs" 16 android:layout_width="fill_parent" 17 android:layout_height="wrap_content" 18 android:background="@color/listSeperator"/> 19 <FrameLayout 20 android:id="@android:id/tabcontent" 21 android:layout_width="fill_parent" 22 android:layout_height="fill_parent"> 23 </FrameLayout> 24 </LinearLayout> 25 </TabHost> 26 </merge>