LEFT | RIGHT |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:layout_width="fill_parent" | 3 android:layout_width="wrap_content" |
4 android:layout_height="fill_parent" | 4 android:layout_height="wrap_content" |
5 android:orientation="vertical" | 5 android:orientation="vertical" |
6 android:paddingTop="8dip" | 6 android:paddingTop="8dip" |
7 android:paddingLeft="16dip" | 7 android:paddingLeft="16dip" |
8 android:paddingRight="16dip" | 8 android:paddingRight="16dip" > |
9 android:paddingBottom="16dip" > | |
10 | 9 |
11 <TextView | 10 <TextView |
12 android:id="@+id/message_text" | 11 android:id="@+id/message_text" |
13 android:layout_width="fill_parent" | 12 android:layout_width="fill_parent" |
14 android:layout_height="wrap_content" /> | 13 android:layout_height="wrap_content" /> |
15 | 14 |
16 <Button | 15 <LinearLayout |
17 android:layout_width="wrap_content" | 16 android:layout_width="fill_parent" |
18 android:layout_height="wrap_content" | 17 android:layout_height="wrap_content" |
19 android:layout_gravity="center_horizontal" | 18 android:gravity="center" |
20 android:onClick="onSettings" | 19 android:orientation="horizontal" |
21 android:text="@string/opensettings" /> | 20 android:paddingBottom="16dip"> |
| 21 |
| 22 <Button |
| 23 android:id="@+id/gotit" |
| 24 android:layout_width="wrap_content" |
| 25 android:layout_height="wrap_content" |
| 26 android:onClick="onGotit" |
| 27 android:paddingRight="8dip" |
| 28 android:text="@string/gotit" /> |
| 29 |
| 30 <Button |
| 31 android:id="@+id/opensettings" |
| 32 android:layout_width="wrap_content" |
| 33 android:layout_height="wrap_content" |
| 34 android:onClick="onSettings" |
| 35 android:text="@string/opensettings" /> |
| 36 </LinearLayout> |
22 | 37 |
23 </LinearLayout> | 38 </LinearLayout> |
LEFT | RIGHT |