aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-06-27 21:40:18 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2014-06-27 21:40:18 +0200
commit9fe07478e7fe683223310d017f162f5bcb467d15 (patch)
tree89b12f622318d80b89f0652ce218777a6359efc4 /OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml
parenta1bcbe72a3c52d416b3dfe5c0cc96b65739641ed (diff)
downloadopen-keychain-9fe07478e7fe683223310d017f162f5bcb467d15.tar.gz
open-keychain-9fe07478e7fe683223310d017f162f5bcb467d15.tar.bz2
open-keychain-9fe07478e7fe683223310d017f162f5bcb467d15.zip
Start work on a first-time wizard
Diffstat (limited to 'OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml b/OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml
new file mode 100644
index 000000000..213346617
--- /dev/null
+++ b/OpenKeychain/src/main/res/layout/wizard_create_key_fragment.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingBottom="4dp"
+ android:text="Enter Full Name, Email and Passphrase!"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="textPersonName"
+ android:hint="Name"
+ android:ems="10"
+ android:id="@+id/name" />
+
+ <AutoCompleteTextView
+ android:id="@+id/email"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="bla@example.com"
+ android:layout_weight="1"
+ android:ems="10"
+ android:inputType="textEmailAddress" />
+
+ <EditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:inputType="textPassword"
+ android:hint="passphrase"
+ android:ems="10"
+ android:id="@+id/passphrase"
+ android:layout_gravity="center_horizontal" />
+
+
+</LinearLayout> \ No newline at end of file