Khang Tran
Khang Tran

Reputation: 467

Change text color of Context Menu item

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)

Upvotes: 1

Views: 2130

Answers (2)

CoolMind
CoolMind

Reputation: 28773

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>

Upvotes: 1

cgalvao1993
cgalvao1993

Reputation: 148

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

How to create Context Menu using XML file?

Upvotes: 1

Related Questions