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