3

I have use toolbar in my app with style

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/holo_blue</
    <item name="actionModeStyle">@style/Search.ActionMode</item>
    <item name="windowActionModeOverlay">true</item>
</style>

Then I used a contextual action bar and able to change the background color.

<style name="Search.ActionMode" parent="@style/Widget.AppCompat.ActionMode">
    <item name="background">@color/actionModeColor</item>
</style>

But I am unable to change the background color of popup menu.

Here is the image

enter image description here

And I wanted the background color of popup menu to be white. I also tried to change the theme by Widget.AppCompat.Light.ActionBar in Search.ActionMode but it does nothing.

halfer
  • 19,824
  • 17
  • 99
  • 186
Patriotic
  • 2,103
  • 4
  • 26
  • 36

2 Answers2

0

There is an easy way to change the colors in Actionbar Use ActionBar Generator:

http://jgilfelt.github.io/android-actionbarstylegenerator/

and copy paste all file in your res folder and change your theme in Android.manifest file.

AmanSinghal
  • 2,404
  • 21
  • 22
0

I have faced the same problem as yours. What I did is

I changed from

<!-- Base application theme. -->
<style name="Theme.Noteplus.Base.Brown" parent="Theme.AppCompat.Light.NoActionBar">

    <item name="actionModeStyle">@style/Widget.ActionMode</item>

    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

to

<!-- Base application theme. -->
<style name="Theme.Noteplus.Base.Brown" parent="Theme.AppCompat.Light.DarkActionBar">

    <item name="actionModeStyle">@style/Widget.ActionMode</item>

    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

solve the problem. (Not exactly sure the reason behind)

(https://stackoverflow.com/a/50114013/72437)

Cheok Yan Cheng
  • 47,586
  • 132
  • 466
  • 875