aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/password_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/password_dialog.xml')
-rw-r--r--res/layout/password_dialog.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/res/layout/password_dialog.xml b/res/layout/password_dialog.xml
new file mode 100644
index 0000000..40b0359
--- /dev/null
+++ b/res/layout/password_dialog.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <TextView id="@+id/passwordLabel"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Password:"/>
+
+ <EditText id="@+id/password"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/passwordLabel"
+ android:maxLines="1"
+ android:password="true"/>
+
+ <Button id="@+id/ok"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/password"
+ android:layout_alignParentRight="true"
+ android:layout_marginLeft="10dip"
+ android:text="@string/button_ok" />
+</RelativeLayout> \ No newline at end of file