如何更改选项菜单点的颜色? [复制]
Posted
技术标签:
【中文标题】如何更改选项菜单点的颜色? [复制]【英文标题】:How to change Options menu dots color? [duplicate] 【发布时间】:2016-05-28 23:52:48 【问题描述】:我想将选项菜单的点颜色更改为白色。我试图为此添加图像,但不起作用。如何做到这一点?
菜单xml:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.siddhi.timetablelayout.Main2Activity">
<item android:id="@+id/action_settings" android:title="@string/action_settings"
android:orderInCategory="100" app:showAsAction="never"
android:icon="@drawable/ic_more_vert_white_48dp"/>
</menu>
谢谢。
【问题讨论】:
【参考方案1】:把它放在你的style.xml
AppTheme
:
<!-- android:textColorSecondary is the color of the menu overflow icon (three vertical dots) -->
<item name="android:textColorSecondary">@color/white</item>
【讨论】:
把它放在你的 style.xml 中。应用主题。 我的主题是 Theme.AppCompat.Light.NoActionBar。这对我不起作用。你能帮帮我吗? 它还改变了单选按钮的颜色,大多数人不需要。我猜。 根本不起作用 @zulkarnainshah 在这里查看 Barun Kumar ***.com/questions/11425660/… 的答案。为我工作。【参考方案2】:您可以使用以下样式声明更改用于它的图像。
<style name="MyCustomTheme" parent="style/Theme.Holo">
<item name="android:actionOverflowButtonStyle">@style/MyCustomTheme.OverFlow</item>
</style>
<style name="MyCustomTheme.OverFlow">
<item name="android:src">@drawable/my_overflow_image</item>
</style>
【讨论】:
以上是关于如何更改选项菜单点的颜色? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Android 4.2 中更改操作栏选项菜单的背景颜色?