OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:layout_width="fill_parent" |
| 4 android:layout_height="fill_parent" > |
| 5 |
| 6 <LinearLayout |
| 7 android:layout_width="fill_parent" |
| 8 android:layout_height="wrap_content" |
| 9 android:orientation="vertical" |
| 10 android:padding="4dip" > |
| 11 |
| 12 <TextView |
| 13 android:layout_width="fill_parent" |
| 14 android:layout_height="wrap_content" |
| 15 android:text="@string/crash_dialog_text" /> |
| 16 |
| 17 <TextView |
| 18 android:layout_width="fill_parent" |
| 19 android:layout_height="wrap_content" |
| 20 android:paddingTop="4dip" |
| 21 android:text="@string/crash_dialog_comment_prompt" /> |
| 22 |
| 23 <EditText |
| 24 android:id="@+id/comments" |
| 25 android:layout_width="fill_parent" |
| 26 android:layout_height="wrap_content" |
| 27 android:lines="2" /> |
| 28 |
| 29 <LinearLayout |
| 30 android:layout_width="fill_parent" |
| 31 android:layout_height="wrap_content" |
| 32 android:orientation="horizontal" |
| 33 android:paddingTop="4dip" > |
| 34 |
| 35 <Button |
| 36 android:layout_width="fill_parent" |
| 37 android:layout_height="wrap_content" |
| 38 android:layout_weight="1" |
| 39 android:onClick="onOk" |
| 40 android:text="@string/ok" /> |
| 41 |
| 42 <Button |
| 43 android:layout_width="fill_parent" |
| 44 android:layout_height="wrap_content" |
| 45 android:layout_weight="1" |
| 46 android:onClick="onCancel" |
| 47 android:text="@string/cancel" /> |
| 48 </LinearLayout> |
| 49 </LinearLayout> |
| 50 |
| 51 </ScrollView> |
OLD | NEW |