无法更改Android导航抽屉中汉堡包图标的颜色

时间:2015-10-30 16:52:11

标签: android navigation-drawer android-navigation-drawer

我创建了一个导航抽屉,在操作栏中有汉堡包/后背图标动画。唯一的问题是我无法将汉堡包图标的颜色更改为白色。我关注How to style the DrawerArrowToggle from Android appcompat v7 21 libraryHow to change color of hamburger icon in material design navigation drawer

我的代码:

   <style name="AppTheme" parent="Theme.AppCompat.Light">
        <item name="colorPrimary">@color/appPrimaryColor</item>
        <item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
        <item name="android:windowNoTitle">true</item>
        <item name="windowActionBar">false</item>
        <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
        <item name="android:actionOverflowButtonStyle">@style/OverFlowIcon</item>
    </style>

    <style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
        <item name="spinBars">true</item>
        <item name="color">@color/white</item>
    </style>

但是,这似乎不起作用。有什么想法吗?

0 个答案:

没有答案