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