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