テキストの白色をオレンジ色に変更したい。
これが例です。
これは、アクション バーにいくつかのスタイルを設定することで実行できます。このブログ投稿で説明されています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);
}