I am using Android Studio. And I created a new activity with a navigation drawer. But, It\'s showing the <- instead of the Hamburger Icon.
How can I modify my code t
use android.support.v7.app.ActionBarDrawerToggle instead of
android.support.v4.app.ActionBarDrawerToggle
you will get an error for the constructor of ActionBarDrawerToggle. Use the constructor for ActionBarDrawerToggle v7 with 4 parameters.
Also add this to your styles.xml
4.Apply this theme to your application in the manifest. Hope this helps.