aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/pubkey.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/pubkey.xml')
-rw-r--r--res/layout/pubkey.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/res/layout/pubkey.xml b/res/layout/pubkey.xml
new file mode 100644
index 0000000..d22fc5c
--- /dev/null
+++ b/res/layout/pubkey.xml
@@ -0,0 +1,33 @@
+<?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">
+
+ <Button id="@+id/generate"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_marginLeft="10dip"
+ android:text="@string/button_generate" />
+
+ <TextView id="@+id/keyName"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/generate"
+ android:text="Username:"/>
+
+ <Button id="@+id/ok"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@id/keyName"
+ android:layout_alignParentRight="true"
+ android:layout_marginLeft="10dip"
+ android:text="@string/button_ok" />
+
+ <Button id="@+id/cancel"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_toLeft="@id/ok"
+ android:layout_alignTop="@id/ok"
+ android:text="@string/button_cancel" />
+</RelativeLayout> \ No newline at end of file