我创建了一个导航抽屉,在操作栏中有汉堡包/后背图标动画。唯一的问题是我无法将汉堡包图标的颜色更改为白色。我关注How to style the DrawerArrowToggle from Android appcompat v7 21 library和How 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>
但是,这似乎不起作用。有什么想法吗?