更改导航抽屉指示器图标的颜色
我正在使用工具栏来代替操作栏,而且我也在使用导航抽屉。我的工具栏颜色是黑色的,我希望我的导航抽屉指示器颜色为白色。所以,如何更改导航抽屉指示器的颜色或将自定义导航指标在v7.Can任何人请帮助我?
尝试在styles.xml中创build这种风格
<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle"> <item name="color">@android:color/white</item> </style>
然后将它添加到你的应用程序主题是这样的:
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
在你的AppTheme中添加这种风格。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="drawerArrowStyle">@style/DrawerArrowStyle</item> </style> <style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle"> <item name="spinBars">true</item> <item name="color">@android:color/white</item> </style>
以下为我工作。
<style name="ToolBarStyle" parent="Theme.AppCompat.Light.NoActionBar"> <item name="colorControlNormal">@android:color/white</item> </style>