aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/create_key.xml
diff options
context:
space:
mode:
authorThialfihar <thialfihar@gmail.com>2010-05-18 15:23:25 +0000
committerThialfihar <thialfihar@gmail.com>2010-05-18 15:23:25 +0000
commited2cb1e525778d62949958bbf108687c571e4ebe (patch)
treee27fd3f422580b22b2a7f34bb0d4d53edccaa680 /res/layout/create_key.xml
parent42f1720bb32b5404ae9b78c0b042b143b6f507af (diff)
parent5b5e15c88663acfc282d42ff51cdceff1d9d4084 (diff)
downloadopen-keychain-ed2cb1e525778d62949958bbf108687c571e4ebe.tar.gz
open-keychain-ed2cb1e525778d62949958bbf108687c571e4ebe.tar.bz2
open-keychain-ed2cb1e525778d62949958bbf108687c571e4ebe.zip
overdue merge of 0.9.x into trunk
Diffstat (limited to 'res/layout/create_key.xml')
-rw-r--r--res/layout/create_key.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/res/layout/create_key.xml b/res/layout/create_key.xml
index 569b703f5..ab327ffeb 100644
--- a/res/layout/create_key.xml
+++ b/res/layout/create_key.xml
@@ -18,35 +18,47 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
+
<TableLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:stretchColumns="1"
android:layout_marginRight="?android:attr/scrollbarSize"
android:paddingLeft="6dip">
+
<TableRow>
+
<TextView android:id="@+id/label_algorithm"
android:text="Algorithm"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical"
android:paddingRight="10dip"/>
+
<Spinner
android:id="@+id/algorithm"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
+
</TableRow>
+
<TableRow>
+
<TextView android:id="@+id/label_size"
android:text="Key Size"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center_vertical"
android:paddingRight="10dip"/>
+
<EditText android:id="@+id/size"
android:text="1024"
android:layout_height="wrap_content"
- android:layout_width="fill_parent" android:gravity="right" android:numeric="integer"/>
+ android:layout_width="fill_parent"
+ android:gravity="right"
+ android:numeric="integer"/>
</TableRow>
+
</TableLayout>
+
</ScrollView>