In my TextView I enabled text-selection with android:textIsSelectable.
The problem is, that the appearing actionbar is white and the color of the buttons (copy , select, etc.) is white too. (I use actionbarsherlock 4.4.0)
Is there a possibility to change the color of these items in the styles.xml and if yes: What is the correct way?
Edit: I found out that i can customize the ActionMode Tab using:
<style name="MyCustomTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionModeBackground">@color/color1</item>
<item name="android:actionModeSplitBackground">@color/color1</item>
</style>
But i am not able to change the color of the buttons