show a toast if the user tries toggling Favorite at the View screen

This commit is contained in:
tibbi
2018-04-27 09:46:54 +02:00
parent a3f3cc5fbe
commit 0031be51fb
13 changed files with 15 additions and 0 deletions

View File

@ -157,6 +157,9 @@ class ViewContactActivity : ContactActivity() {
setImageDrawable(getStarDrawable(contact!!.starred == 1))
tag = contact!!.starred
applyColorFilter(config.textColor)
setOnClickListener {
toast(R.string.must_be_at_edit)
}
}
}