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