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