1

This is my issue, i want to make the text of item in underline turn to black color, it currently in white, i don't know how to change text color for these item. Could someone help me !

Could you see this picture for clearly my issue : Images Here ! (Focus on red underline item)

Khang Tran
  • 467
  • 5
  • 16

2 Answers2

1

Create a xml layout for the Context Menu. The post below might help you.

How to create Context Menu using XML file?

Community
  • 1
  • 1
cgalvao1993
  • 148
  • 2
  • 18
  • 1
    i also create my context menu in xml file, but i don't know how to change color of it. Your link do not change context menu color. – Khang Tran May 03 '13 at 11:43
1

See https://stackoverflow.com/a/50009942/2914140:

<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:itemBackground">#ffffff</item>
    <item name="android:textColor">#000000</item>
</style>
CoolMind
  • 26,736
  • 15
  • 188
  • 224