アクションバーには、アイコンではなくテキストで表示されるアイテムがあります。クリックすると、このテキストの色を青から白に変更します。背景を変えたくない
<item name="selectableItemBackground"></item>
テキストの色のみ。誰かアイデアはありますか?
アクションバーには、アイコンではなくテキストで表示されるアイテムがあります。クリックすると、このテキストの色を青から白に変更します。背景を変えたくない
<item name="selectableItemBackground"></item>
テキストの色のみ。誰かアイデアはありますか?
<style name="AppTheme" parent="android:Theme.Holo">
<item name="android:actionMenuTextColor">@color/action_item_text_color</item>
</style>
R.color.action_item_text_color
:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:color="#fff"/>
<item android:color="#00f"/>
</selector>