I have tried to change the hamburger icon color from black to white following this: How to change Toolbar home icon color, however the icon will not change its color.
Here is the style I created:
<style name="WhiteHamburguerIcon" parent="AppTheme">
<item name="android:textColorSecondary">@color/white</item>
</style>
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
Then I applied the style to the toolbar:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:theme="@style/WhiteHamburguerIcon"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:titleTextAppearance="@style/Toolbar.TitleText" />
The activity is using this style:
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
The back arrow is white also the overflow button. What can I do to achieve this?