Remove large padding after hamburger (menu) icon in Android Toolbar?
Solution 1:
I figured it out! I had to set
app:contentInsetStartWithNavigation="0dp"
in my Toolbar
layout.
Solution 2:
Add these properties to your Toolbar
:
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"
This will disable inset start padding from Toolbar
's title