Nativescript: Can't set ActionItem font color

Created on 1 Jan 2016  路  6Comments  路  Source: NativeScript/NativeScript

I have this actionbar and i want to change his background color and the font text color but the actionitem text color doesnt change.I tryed to set an class to the actionitem element but will no work.

<ActionBar title="DROUPY" style="background-color:#000;color:#f8f8f8">
      <ActionBar.actionItems>
        <ActionItem text="BACK"  ios.position="left"/>
        <ActionItem text="SETTINGS" ios.position="right"/>
      </ActionBar.actionItems>
    </ActionBar>
question

Most helpful comment

Sorry to reopen this but I'm having the same problem. actionMenuTextColor does not seem to work. If I set the secondary color, it works but then makes the clear button on my search bar the same color. Thoughts?

All 6 comments

When you set the color property, in iOS it will affects the color of the title and the action items. In Android, the color property affects only the title text. However, you can set the default color of the text in the action items by adding an actionMenuTextColor item in the Android theme (inside App_Resources\Android\values\styles.xml).

Hello enchev, could you be a bit more precise?
I believe it should be somehow similar and below :
```