Issue
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.
Solution
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
Answered By - Maxim Efimov
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.