如何更改 Android 上导航抽屉箭头的颜色?

How to change the color for navigation drawer arrows on Android?

我的要求是“如何更改导航抽屉箭头的颜色 导航抽屉箭头上的亮点是白色,我怎么能把它改成不同的颜色,但让白色仍然只有..

有没有可能?更改导航抽屉箭头

导航抽屉箭头上的图像: enter link description here

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>

希望对您有所帮助。