updating some group chat related coloring issues

This commit is contained in:
tibbi 2021-02-16 13:44:26 +01:00
parent 65ae360743
commit 1d0ecc6cab
3 changed files with 14 additions and 4 deletions

View file

@ -469,14 +469,15 @@ class ThreadActivity : SimpleActivity() {
private fun showSelectedContacts() {
val adjustedColor = getAdjustedPrimaryColor()
val selectedContactBg = resources.getDrawable(R.drawable.item_selected_contact_background)
(selectedContactBg as LayerDrawable).findDrawableByLayerId(R.id.selected_contact_bg).applyColorFilter(adjustedColor)
val views = ArrayList<View>()
participants.forEach {
val contact = it
layoutInflater.inflate(R.layout.item_selected_contact, null).apply {
val selectedContactBg = resources.getDrawable(R.drawable.item_selected_contact_background)
(selectedContactBg as LayerDrawable).findDrawableByLayerId(R.id.selected_contact_bg).applyColorFilter(adjustedColor)
selected_contact_holder.background = selectedContactBg
selected_contact_name.text = contact.name
selected_contact_name.setTextColor(adjustedColor.getContrastColor())
selected_contact_remove.applyColorFilter(adjustedColor.getContrastColor())