aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/res
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-09-09 12:59:53 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-09-09 12:59:53 +0200
commit5dc693c64c14000a3a03903736d000a45795bcee (patch)
treefc7653d46740579f73d69558fe2a745f6686cb83 /OpenPGP-Keychain/res
parentc4bf7c5d1145c3a08211f31633d75c61bbb4bcb1 (diff)
downloadopen-keychain-5dc693c64c14000a3a03903736d000a45795bcee.tar.gz
open-keychain-5dc693c64c14000a3a03903736d000a45795bcee.tar.bz2
open-keychain-5dc693c64c14000a3a03903736d000a45795bcee.zip
Make asciiArmor a parameter, extend advanced app settings
Diffstat (limited to 'OpenPGP-Keychain/res')
-rw-r--r--OpenPGP-Keychain/res/layout/api_app_settings_fragment.xml36
1 files changed, 31 insertions, 5 deletions
diff --git a/OpenPGP-Keychain/res/layout/api_app_settings_fragment.xml b/OpenPGP-Keychain/res/layout/api_app_settings_fragment.xml
index 307da3efb..45dd11252 100644
--- a/OpenPGP-Keychain/res/layout/api_app_settings_fragment.xml
+++ b/OpenPGP-Keychain/res/layout/api_app_settings_fragment.xml
@@ -82,15 +82,41 @@
android:id="@+id/api_app_settings_advanced"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:orientation="horizontal"
+ android:orientation="vertical"
android:visibility="invisible" >
- <CheckBox
- android:id="@+id/api_app_ascii_armor"
+ <TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:text="@string/label_asciiArmour" />
+ android:text="@string/label_encryptionAlgorithm"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <Spinner
+ android:id="@+id/api_app_settings_encryption_algorithm"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/label_hashAlgorithm"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <Spinner
+ android:id="@+id/api_app_settings_hash_algorithm"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
+
+ <TextView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@string/label_messageCompression"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <Spinner
+ android:id="@+id/api_app_settings_compression"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout> \ No newline at end of file