aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res/layout/create_key_dialog.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-01-12 21:33:37 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-01-12 21:33:37 +0100
commit100ae50e02ef3dfd0330a6e1e7084726ddea69a0 (patch)
treec5eb870ccab1fc99718f44ced068b84d3238cdde /OpenPGP-Keychain/res/layout/create_key_dialog.xml
parent1895e6acbd71455d6c287c258231c2a9ce2ffd1b (diff)
downloadopen-keychain-100ae50e02ef3dfd0330a6e1e7084726ddea69a0.tar.gz
open-keychain-100ae50e02ef3dfd0330a6e1e7084726ddea69a0.tar.bz2
open-keychain-100ae50e02ef3dfd0330a6e1e7084726ddea69a0.zip
cleanup layouts, prepare layouts for new key view
Diffstat (limited to 'OpenPGP-Keychain/res/layout/create_key_dialog.xml')
-rw-r--r--OpenPGP-Keychain/res/layout/create_key_dialog.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/res/layout/create_key_dialog.xml b/OpenPGP-Keychain/res/layout/create_key_dialog.xml
new file mode 100644
index 000000000..a2e908433
--- /dev/null
+++ b/OpenPGP-Keychain/res/layout/create_key_dialog.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
+
+ <TableLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:paddingLeft="16dp"
+ android:paddingRight="16dp"
+ android:stretchColumns="1" >
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:padding="4dp"
+ android:text="@string/key_creation_el_gamal_info" />
+
+ <TableRow>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:padding="4dp"
+ android:text="@string/label_algorithm" />
+
+ <Spinner
+ android:id="@+id/create_key_algorithm"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="4dp" />
+ </TableRow>
+
+ <TableRow>
+
+ <TextView
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:padding="4dp"
+ android:text="@string/label_key_size" />
+
+ <Spinner
+ android:id="@+id/create_key_size"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="right"
+ android:padding="4dp" />
+ </TableRow>
+ </TableLayout>
+
+</ScrollView> \ No newline at end of file