equal
deleted
inserted
replaced
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 |
|
7 <LinearLayout |
|
8 android:layout_width="match_parent" |
|
9 android:layout_height="match_parent" |
|
10 android:orientation="horizontal" > |
|
11 |
|
12 <TabWidget |
|
13 android:id="@android:id/tabs" |
|
14 android:layout_width="wrap_content" |
|
15 android:layout_height="match_parent" |
|
16 android:layout_weight="0" /> |
|
17 |
|
18 <FrameLayout |
|
19 android:id="@android:id/tabcontent" |
|
20 android:layout_width="0dip" |
|
21 android:layout_height="match_parent" |
|
22 android:layout_weight="1" /> |
|
23 </LinearLayout> |
|
24 </TabHost> |
|