aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res/layout/sign_key_activity.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/sign_key_activity.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/sign_key_activity.xml')
-rw-r--r--OpenPGP-Keychain/res/layout/sign_key_activity.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/res/layout/sign_key_activity.xml b/OpenPGP-Keychain/res/layout/sign_key_activity.xml
new file mode 100644
index 000000000..b9f66db7f
--- /dev/null
+++ b/OpenPGP-Keychain/res/layout/sign_key_activity.xml
@@ -0,0 +1,54 @@
+<?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="match_parent"
+ android:orientation="vertical" >
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+
+ <TextView
+ android:id="@+id/textView1"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/label_send_key"
+ android:textAppearance="?android:attr/textAppearanceMedium" >
+ </TextView>
+
+ <CheckBox
+ android:id="@+id/sendKey"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:checked="true"
+ android:text="" >
+ </CheckBox>
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+
+ <Spinner
+ android:id="@+id/keyServer"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1" />
+ </LinearLayout>
+
+ <Button
+ android:id="@+id/sign"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/btn_sign" >
+ </Button>
+
+</LinearLayout> \ No newline at end of file