Let\'s see,
i know how to change the style of a ListView (the orange color when an item is selected):
android:listSelector=\"@drawable/xxx\" and a drawable w
This is the only approach that worked for me:
You can override the android attribute actionModeBackground (which I found in Android/Sdk/platforms/android-22/data/res/values/themes_holo.xml and R.attr) in your app theme:
and replace it with your own drawable and colors, in this case,
context_menu.xml:
which is composed of
context_menu_bottom.xml:
and
context_menu_top.xml:
Hope it helps!