I'm creating an application which got both an ActionBar
and a navigation drawer. I need a way to change the indicator of the action bar at some cases to have an up button (the arrow sign) instead of the 3 navigational drawer dots.
When trying to use ActionBarDrawerToggle
I had many issues. I first used the v4 type which changed the appearence of the indicator but without changing the functionality (pressing the arrow button opened the drawer instead of going up the backstack). I tried using the v7 type but then this happened:
stackoverflow.com/questions/30591464/updating-v7-support-jar-causes-class-not-found-exception
So is there a way to acheive what I need via other ways?