1 |
<?xml version="1.0" encoding="utf-8"?> |
---|
2 |
<TabHost |
---|
3 |
xmlns:android="http://schemas.android.com/apk/res/android" |
---|
4 |
android:id="@android:id/tabhost" |
---|
5 |
android:layout_width="fill_parent" |
---|
6 |
android:layout_height="fill_parent"> |
---|
7 |
<TabWidget |
---|
8 |
android:id="@android:id/tabs" |
---|
9 |
android:layout_width="fill_parent" |
---|
10 |
android:layout_height="65px" /> |
---|
11 |
|
---|
12 |
<FrameLayout |
---|
13 |
android:id="@android:id/tabcontent" |
---|
14 |
android:layout_width="fill_parent" |
---|
15 |
android:layout_height="200px" |
---|
16 |
android:paddingTop="65px"> |
---|
17 |
<LinearLayout |
---|
18 |
android:id="@+id/content01" |
---|
19 |
android:orientation="vertical" |
---|
20 |
android:layout_width="fill_parent" |
---|
21 |
android:layout_height="fill_parent"> |
---|
22 |
</LinearLayout> |
---|
23 |
|
---|
24 |
<LinearLayout |
---|
25 |
android:id="@+id/content02" |
---|
26 |
android:orientation="vertical" |
---|
27 |
android:layout_width="fill_parent" |
---|
28 |
android:layout_height="fill_parent"> |
---|
29 |
</LinearLayout> |
---|
30 |
|
---|
31 |
<LinearLayout |
---|
32 |
android:id="@+id/content03" |
---|
33 |
android:orientation="vertical" |
---|
34 |
android:layout_width="fill_parent" |
---|
35 |
android:layout_height="fill_parent"> |
---|
36 |
</LinearLayout> |
---|
37 |
|
---|
38 |
<LinearLayout |
---|
39 |
android:id="@+id/content04" |
---|
40 |
android:orientation="vertical" |
---|
41 |
android:layout_width="fill_parent" |
---|
42 |
android:layout_height="fill_parent"> |
---|
43 |
</LinearLayout> |
---|
44 |
</FrameLayout> |
---|
45 |
</TabHost> |
---|