문제

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.

도움이 되었습니까?

해결책

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

다른 팁

put this line

mDrawerLayout.openDrawer(drawerListView);

at the end of onCreate it workes fine.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top