mxn21 / FlowingDrawer

swipe display drawer with flowing & bouncing effects.
Apache License 2.0
2.57k stars 468 forks source link

Close Floating drawer after selecting the item #50

Closed ajeett closed 7 years ago

ajeett commented 7 years ago

how to automatically Close Floating drawer after selecting the item

mxn21 commented 7 years ago

You can define a method in MainActivity: public void closeMenu() { if (mDrawer.isMenuVisible()) { mDrawer.closeMenu(); } }

and in MenuListFragment use : ((MainActivity)getActivity()).closeMenu() ;