I want to change default icon(where user can click and toggle the menus) from toolbar. My code is as bellow:
navigation_bar.xml
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:background="@color/bluebg"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:navigationIcon="@drawable/menu"
/>
for this I have setup the style as bellow:
<style name="AppTheme"
parent="Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarStyle">@style/MenuBarStyle</item>
</style>
<style name="MenuBarStyle" parent="android:style/Widget.Holo.Light.ActionButton.Overflow">
<item name="android:src">@drawable/right_icone</item>
</style>
with above code I successfully changed the right side icon but i also wants to change left side icon to.
I have tired with following solutions.
I wants to change user icon from bellow image. https://i.stack.imgur.com/KTh3d.jpg