Android Navigation Drawer Open On Activity Create

3.4k Views Asked by At

I do have a simple requirement. I want new android Navigation Drawer to open upon start of Activity.

I have tried

mDrawerLayout.openDrawer(drawerListView);

in onCreate of host activity. But it didn't work.

Any kind of help would be appreciated. Thank you.

2

There are 2 best solutions below

3
On BEST ANSWER

try to move the code to onResume() and set a flag that the action is done so it won't happen every time activity goes foreground

0
On

put this line

mDrawerLayout.openDrawer(drawerListView);

at the end of onCreate it workes fine.