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
Just write your code in a handler and put 200 ms delay.
new Handler().postDelayed(new Runnable() { @Override public void run() { openSelectionDrawerItem(position); } }, 200);