parent
b2839eb0a1
commit
c1db901fea
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue