2

I'm trying to figure out how to change the color of the contextual action bar menu (CAB) for example i want to have red CAB in my app,and i use the CAB in one of my fragments, Any help would be appreciated! Thanks!

Ladan Nekuii
  • 185
  • 1
  • 6
  • 18

2 Answers2

2

You need to add following in your theme defined under styles.xml,​

<item name="android:actionBarStyle">@style/Widget.Styled.ActionBar</item>
<item name="android:actionModeBackground">@drawable/actionmode_background</item>`
Fabian N.
  • 3,807
  • 2
  • 23
  • 46
Mehul Joisar
  • 15,348
  • 6
  • 48
  • 57
1

create a new style like below and use that style in your activity theme

<style name="styleActionMode" parent="@style/Widget.AppCompat.ActionMode">
<item name="background">your color code</item>
<item name="actionMenuTextColor">your color code</item>
Ryan M
  • 18,333
  • 31
  • 67
  • 74
Ramees
  • 68
  • 4
  • 16