我的请求是"如何更改导航抽屉箭头的颜色 导航抽屉箭头上的亮点是白色,如何将其更改为不同的颜色,但仅作为白色仍然是..
如果有可能吗?更改导航抽屉箭头
导航抽屉箭头上的图像: enter link description here
答案 0 :(得分:0)
In your style.xml ,write this code.
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>
<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">here give the colour code you want to</item>
<item name="spinBars">true</item>
</style>
</resources>
希望它可能会有所帮助。