简体   繁体   中英

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

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

Sample code

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM