From 5473703f181dfd3203b23e9b18db96f1c3471d5f Mon Sep 17 00:00:00 2001 From: Ashley Hughes Date: Fri, 20 Sep 2013 13:23:06 +0100 Subject: set mainUserIdRest visible after GONE in previous key --- .../src/org/sufficientlysecure/keychain/ui/widget/KeyListAdapter.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/KeyListAdapter.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/KeyListAdapter.java index 989036a7f..780520cb1 100644 --- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/KeyListAdapter.java +++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/ui/widget/KeyListAdapter.java @@ -92,6 +92,8 @@ public class KeyListAdapter extends CursorTreeAdapter { if (mainUserIdRest.getText().length() == 0) { mainUserIdRest.setVisibility(View.GONE); + } else { + mainUserIdRest.setVisibility(View.VISIBLE); } } -- cgit v1.2.3 From 9f631f4dd45d354b00f643d88676ecbb8f8023a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Sun, 22 Sep 2013 14:35:51 +0200 Subject: Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6304a95e1..b0ff7e21d 100644 --- a/README.md +++ b/README.md @@ -50,17 +50,17 @@ To do automatic encryption/decryption/sign/verify use the OpenPGP Remote API. #### OpenPGP Keychain specific Intent actions: * ``org.sufficientlysecure.keychain.action.ENCRYPT`` - * To encrypt text use extra ``text`` (type: ``String``) + * To encrypt or sign text, use extra ``text`` (type: ``String``) * or set data ``Uri`` (``intent.setData()``) pointing to a file * Enable ASCII Armor for file encryption (encoding to Radix-64, 33% overhead) by adding the extra ``ascii_armor`` with value ``true`` * ``org.sufficientlysecure.keychain.action.DECRYPT`` - * To decrypt text use extra ``text`` (type: ``String``) + * To decrypt or verify text, use extra ``text`` (type: ``String``) * or set data ``Uri`` (``intent.setData()``) pointing to a file * ``org.sufficientlysecure.keychain.action.IMPORT_KEY`` * Extras: ``key_bytes`` (type: ``byte[]``) * or set data ``Uri`` (``intent.setData()``) pointing to a file * ``org.sufficientlysecure.keychain.action.IMPORT_KEY_FROM_QR_CODE`` - * without extras starts Barcode Scanner to get QR Code + * without extras, starts Barcode Scanner to get QR Code ## OpenPGP Remote API To do asyncronous fast encryption/decryption/sign/verify operations bind to the OpenPGP remote service. -- cgit v1.2.3