properly update all menu colors onResume

This commit is contained in:
tibbi 2023-01-02 23:06:47 +01:00
parent c1c9cf0419
commit 218aba7ad6
2 changed files with 11 additions and 5 deletions

View file

@ -94,6 +94,7 @@ class MainActivity : SimpleActivity() {
override fun onResume() {
super.onResume()
setupToolbar(main_toolbar)
updateMenuColors()
getOrCreateConversationsAdapter().apply {
if (storedTextColor != getProperTextColor()) {
@ -199,10 +200,15 @@ class MainActivity : SimpleActivity() {
}
private fun updateMenuColors() {
main_app_bar_layout.setBackgroundColor(getProperBackgroundColor())
main_toolbar_holder.background?.alpha = 60
main_toolbar_search.setTextColor(getProperBackgroundColor().getContrastColor())
main_toolbar_search.setHintTextColor(getProperBackgroundColor().getContrastColor().adjustAlpha(LOWER_ALPHA))
val backgroundColor = getProperBackgroundColor()
val contrastColor = backgroundColor.getContrastColor()
updateStatusbarColor(backgroundColor)
main_app_bar_layout.setBackgroundColor(backgroundColor)
main_toolbar_search_icon.applyColorFilter(contrastColor)
main_toolbar_holder.background?.applyColorFilter(getProperPrimaryColor().adjustAlpha(LOWER_ALPHA))
main_toolbar_search.setTextColor(contrastColor)
main_toolbar_search.setHintTextColor(contrastColor.adjustAlpha(MEDIUM_ALPHA))
}
// while SEND_SMS and READ_SMS permissions are mandatory, READ_CONTACTS is optional. If we don't have it, we just won't be able to show the contact name in some cases