5

我想将文本的白色更改为橙​​色。

这是一个例子。

动作条夏洛克

4

2 回答 2

3

这可以通过为您的操作栏设置一些样式来完成。这篇博文中有解释http://android-developers.blogspot.com.au/2011/04/customizing-action-bar.html

你需要为你的应用设置你的风格。

<style name="MyTheme" parent="android:style/Theme.Holo.Light">
     <item name="android:dropDownListViewStyle">@style/MyDropDownListView</item>
</style>

然后您可以使用自己的文本颜色指定此样式。

<!-- style the items within the overflow menu -->
<style name="MyDropDownListView" parent="android:style/Widget.Holo.ListView.DropDown">
    <!-- This is the orange text color -->
    <item name="android:textColor">#CC3232</item>
</style>
于 2012-06-14T06:55:47.927 回答
1

MenuItem您可以通过使用SpannableString而不是轻松更改文本的颜色String

@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
    inflater.inflate(R.menu.your_menu, menu);

    int positionOfMenuItem = 0; // or whatever...
    MenuItem item = menu.getItem(positionOfMenuItem);
    SpannableString s = new SpannableString("My red MenuItem");
    s.setSpan(new ForegroundColorSpan(Color.RED), 0, s.length(), 0);
    item.setTitle(s);
}
于 2013-09-25T15:15:56.957 回答