有人知道如何消除围绕按下的操作栏菜单项的恼人的蓝色光芒吗?
谢谢, Mladjo
答案 0 :(得分:6)
是的,你可以覆盖......
android:actionBarItemBackground
...为每个操作项的背景定义可绘制资源。 E.g。
<style name="CustomActivityTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarItemBackground">@drawable/ab_item_background</item>
</style>
查看文档here。
注意:如果您想支持API级别低于14的Android版本,则必须在应用中添加support package和ActionBarSherlock(ABS)。之后你需要为Android标准和ABS设置背景:
<style name="CustomActivityTheme" parent="@android:style/Theme.Holo">
<item name="android:actionBarItemBackground">@drawable/ab_item_background</item>
<item name="actionBarItemBackground">@drawable/ab_item_background</item>
</style>
您也可以使用颜色代替drawable,例如:
<item name="actionBarItemBackground">@color/myColorDefinition</item>
p.s。 ...或者最好,使用状态drawable:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_pressed"
android:state_pressed="true" />
<item android:drawable="@drawable/button_default" />
</selector>