如何突出在选择菜单项? [重复](how to highlight a menu item on

2019-08-18 07:42发布

这个问题已经在这里有一个答案:

  • 如何删除从夏洛特动作栏菜单项的蓝色辉光? 1个回答

如何突出在选择菜单项,我试图修改styles.xml与像各种属性colorPressedHighlightcolorActivatedHighlight等有什么办法保持专注直到其他项目中选择菜单项?

AndroidManifest.xml中:

<style name="onPressedHighLight" parent="AppBaseTheme">
    <item name="android:colorActivatedHighlight">@color/OnPressed</item>
</style>
<color name="OnPressed" parent="AppBaseTheme">#FF0000</color>

活动文件:

setTheme(R.style.onPressedHighLight);

Answer 1:

自定义按钮使用选择。 在谷歌搜索更多的例子。 这是一个 。



文章来源: how to highlight a menu item on selection? [duplicate]