When i use AppCompat lib (v21) i got ActionBar with new style of "hamburger" icon. Is possible to get the same behaviour, but not using AppCompat. I'd like to have standard Holo.Light theme with new "hamburger" (drawer) icon in ActionBar.
Asked
Active
Viewed 641 times
3
-
Why? Also, set the image yourself. – Jared Burrows Feb 23 '15 at 01:27
1 Answers
5
You can get the assets you want from the official github account of Google
Here the link for the xxhdpi density ic_menu_white xxhdpi
And set it to your Action bar with the method setIcon()

Elodie E2
- 580
- 3
- 10
-
What about behaviour like rotating hamburger transformating to arrow ? – marioosh Feb 23 '15 at 05:34
-
@marioosh that is a behaviour of ActionBarDrawerToggle and I think you can override the method getThemeUpIndicator() to return the drawable you want or customize the style in the application theme by changing the drawerArrowStyle – Elodie E2 Feb 25 '15 at 05:02