1

我正在努力在 Android 上将菜单项文本颜色设置为白色,但没有太大成功。

我试过了:

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

有任何想法吗?我正在使用 Smartface 4.3.0

4

1 回答 1

0

您可以使用此代码更改菜单项的文本颜色

<style 
 name="myCustomMenuTextApearance"parent="@android:style/TextAppearance.Widget.IconMenu.Item">
    <item name="android:textColor">@android:color/primary_text_dark</item>
</style>
于 2015-05-27T12:18:52.913 回答