Search code examples
androidzendesk

Zendesk Action Bar Color change (Android)


I am trying to change the action bar color in my Zendesk Activity.

Below is my style code for the same.

 <style name="ZendeskCustom" parent="ZendeskSdkTheme.Light.DarkActionBar">
        <item name="colorPrimary">@color/baseColor</item>
    
        <item name="colorPrimaryDark">@color/baseColor</item>
    
        <item name="colorAccent">@color/blueAccent</item>
    
        <item name="actionBarTheme">@style/MyActionBar</item>
    </style>

    <style name="MyActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="android:background">@color/baseColor</item>
    </style>

Help appreciated. Thanks


Solution

  • try this to change the color of ActionBar you need to your colorPrimary in color.XML

    Sample code

    <item name="colorPrimary">#FF4081</item>