如何更改工具栏菜单项文本颜色?

时间:2016-04-26 05:34:15

标签: android material-design menuitem android-toolbar

我见过很多关于同一问题的解决方案。但没有解决方案适合我。

这是更改工具栏中菜单项文本颜色的最佳解决方案。

定义新样式时延伸" AppTheme.AppBarOverlay"而不是" Theme.AppCompat.Light.DarkActionBar"。 这不仅会更改菜单项文本颜色,还会保留导航图标的默认颜色。

styles.xml

<style name="myCustomMenuTextApearance" parent="AppTheme.AppBarOverlay">
    <item name="actionMenuTextColor">@color/colorAccent</item>

工具栏

<android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_scrollFlags="scroll|enterAlways"
            android:background="?attr/colorPrimary"
            android:theme="@style/myCustomMenuTextApearance"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

1 个答案:

答案 0 :(得分:0)

在文件menu.xml中使用您的主题,因为您要在工具栏中添加的所有项目都在此处。您可以使用项目的属性色调来改变方面颜色。我想。