我想将文本的白色更改为橙色。
这是一个例子。
这可以通过为您的操作栏设置一些样式来完成。这篇博文中有解释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>
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);
}