I\'m developing an application which uses the navigation drawer pattern (With DrawerLayout).
Each click on a drawer\'s item, replaces the fragment in the main contai
If you want it smooth and without any delay, leave the drawer open and close it afterwards when returning (in the onRestart() method).
@Override
protected void onRestart() {
// TODO Auto-generated method stub
super.onRestart();
mDrawerLayout.closeDrawer(mDrawerList);
}
The side effect is an (speedy) animation when returning, but this might be acceptable.