1

I'm struggling to set the menu item text color to white on Android, but without much success.

I've tried:

this.actionBar.itemTextColor = "#ffffff"; //this is not working on Android

Any ideas? I'm using Smartface 4.3.0

  • Below given link give you fully solution :: visit http://stackoverflow.com/questions/3519277/how-to-change-the-text-color-of-menu-item-in-android – JDK May 27 '15 at 12:21

1 Answers1

0

you can use this code for text color change for menu items

<style 
 name="myCustomMenuTextApearance"parent="@android:style/TextAppearance.Widget.IconMenu.Item">
    <item name="android:textColor">@android:color/primary_text_dark</item>
</style>
Amitsharma
  • 1,577
  • 1
  • 17
  • 29