AndroidResideMenu icon indicating copy to clipboard operation
AndroidResideMenu copied to clipboard

How to remove right side menu?

Open tim-teacher opened this issue 9 years ago • 1 comments

I need only left menu, how can I remove the right one?

I try: mResideMenu = new ResideMenu(this, R.layout.view_left_side_menu, 0) because there are no constructor with 2 arguments but it causes Crash.

tim-teacher avatar Oct 27 '15 14:10 tim-teacher

All I had to do was use it like this and the right menu was gone:

    resideMenu = new ResideMenu(this);
    resideMenu.setSwipeDirectionDisable(ResideMenu.DIRECTION_RIGHT);

Seylox avatar Nov 12 '15 08:11 Seylox