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
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
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>