hide SMS and Call actions when no number is available

This commit is contained in:
tibbi
2017-12-11 21:15:40 +01:00
parent 5b514d5b92
commit db2ee05b5c
2 changed files with 39 additions and 39 deletions

View File

@ -62,6 +62,8 @@ class ContactActivity : SimpleActivity() {
setupEditContact()
}
contact_send_sms.beVisibleIf(contact!!.number.isNotEmpty())
contact_start_call.beVisibleIf(contact!!.number.isNotEmpty())
contact_send_email.beVisibleIf(contact!!.email.isNotEmpty())
contact_photo.background = ColorDrawable(config.primaryColor)