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 に答える