DrawerLayout on top of Actionbar
问题 When using the drawer layout is there a way to overlay the drawer view over the action bar? I do not want to hide the action bar when the drawer is shown. I want the action bar to simply stay put, but be sent to the background. An example of this is the iOS Play Music app... My current implementation hides and shows the action bar when the drawer state changes, but I do not like this user experience. public void onDrawerClosed(View view) { getActionBar().show(); invalidateOptionsMenu(); }