Index: res/layout/configuration.xml |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/res/layout/configuration.xml |
@@ -0,0 +1,36 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:orientation="vertical" |
+ android:paddingLeft="8dip" |
+ android:paddingRight="8dip" > |
+ |
+ <TextView |
+ android:id="@+id/message_text" |
+ android:layout_width="fill_parent" |
+ android:layout_height="wrap_content" /> |
+ |
+ <LinearLayout |
+ android:layout_width="fill_parent" |
+ android:layout_height="wrap_content" |
+ android:gravity="center" |
+ android:orientation="horizontal" |
+ android:paddingBottom="8dip" |
+ android:paddingTop="8dip" > |
+ |
+ <Button |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:onClick="onHelp" |
+ android:paddingRight="8dip" |
+ android:text="@string/help" /> |
+ |
+ <Button |
+ android:layout_width="wrap_content" |
+ android:layout_height="wrap_content" |
+ android:onClick="onOk" |
+ android:text="@string/gotit" /> |
+ </LinearLayout> |
+ |
+</LinearLayout> |