工具栏中的菜单按钮的颜色

时间:2017-04-17 11:01:04

标签: android menu toolbar

Screenshot

如何为这三点设置任何颜色?

3 个答案:

答案 0 :(得分:1)

  

如何为这三个点设置任何颜色

您似乎为您的应用或活动设置了Light主题。将其设置为黑暗,点将显示为亮光。

答案 1 :(得分:0)

尝试使用Theme.AppCompat.Light.DarkActionBar作为基础style

您可以通过更改样式中的overflow icon来更改android:textColorSecondary颜色:

<item name="android:textColorSecondary">@color/white</item>

答案 2 :(得分:0)

这是最简单的方法。

  <!-- android:textColorSecondary is the color of the menu overflow icon (three vertical dots) -->
    <item name="android:textColorSecondary">@color/white</item>