Reputation: 467
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
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
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