Home > database >  Mesibo - How to change toolbar color in Android
Mesibo - How to change toolbar color in Android

Time:06-12

I am working with Mesibo SDK for android and I am trying to change the toolbar color without results.

I would to like to change both colors: enter image description here

change the value of "colorPrimary"

CodePudding user response:

Use getConfig() to get the configuration instance and then use Config.mToolbarColor to set the color. You need to use ARGB color.

You can refer to the source code is here for other configurable properties

https://github.com/mesibo/ui-modules-android/blob/master/Messaging/messaging/src/main/java/com/mesibo/messaging/MesiboUI.java

  • Related