diff options
author | Mohamed <mohamed@zenadi.com> | 2017-11-19 12:27:31 +0100 |
---|---|---|
committer | Mohamed <mohamed@zenadi.com> | 2017-11-19 12:27:31 +0100 |
commit | c1db901feab2b8130f53b9cd6cc57e37a6c54387 (patch) | |
tree | 1d9096c9c5e14ae2584e891822988b935175ee58 | |
parent | b2839eb0a166cdff87e1a1a2433f036bb71be203 (diff) |
hide password label if password is empty
fix #295
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt | 9 | ||||
-rw-r--r-- | app/src/main/res/layout/decrypt_layout.xml | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt index 3b47bf66..d0174a9a 100644 --- a/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt +++ b/app/src/main/java/com/zeapo/pwdstore/crypto/PgpActivity.kt @@ -199,6 +199,15 @@ class PgpActivity : AppCompatActivity(), OpenPgpServiceConnection.OnBound { return@executeApiAsync } + if (entry.password.isEmpty()) { + crypto_password_show.visibility = View.GONE + crypto_password_show_label.visibility = View.GONE + } else { + crypto_password_show.visibility = View.VISIBLE + crypto_password_show_label.visibility = View.VISIBLE + crypto_password_show.typeface = monoTypeface + crypto_password_show.text = entry.password + } crypto_password_show.typeface = monoTypeface crypto_password_show.text = entry.password diff --git a/app/src/main/res/layout/decrypt_layout.xml b/app/src/main/res/layout/decrypt_layout.xml index 727b6376..1fde3b79 100644 --- a/app/src/main/res/layout/decrypt_layout.xml +++ b/app/src/main/res/layout/decrypt_layout.xml @@ -67,6 +67,7 @@ android:layout_height="wrap_content"> <TextView + android:id="@+id/crypto_password_show_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textStyle="bold" |