| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <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" >
- <ImageView
- android:id="@+id/imageView1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_above="@android:id/tabs"
- android:scaleType="fitXY"
- android:src="@drawable/bg_1" />
- <TabWidget
- android:id="@android:id/tabs"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" >
- </TabWidget>
- <FrameLayout
- android:id="@android:id/tabcontent"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_above="@android:id/tabs"
- android:layout_alignParentLeft="true" >
- <FrameLayout
- android:id="@+id/tab1"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- </FrameLayout>
- <!-- <FrameLayout
- android:id="@+id/tab2"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- </FrameLayout> -->
- <FrameLayout
- android:id="@+id/tab3"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent" >
- </FrameLayout>
-
- </FrameLayout>
- </RelativeLayout>
- </TabHost>
|