Hi I am working with android.I had integrated a slider library https://github.com/jfeinstein10/SlidingMenu into my app. Now I can swipe left to open the menu from behind the screen and swipe right to close the menu.Now I want to add a button at the left side of the screen to control the swipe activity.So that I can swipe screen along with the button and button will always appear in front of the screen even the menu is closed as in the image.Is it possible?? please help me, thanks in advance :)
here is the code I used to display slide menu
SlidingMenu menu = new SlidingMenu(this);
menu.setMode(SlidingMenu.LEFT);
menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setShadowWidthRes(R.dimen.shadow_width);
menu.setShadowDrawable(R.drawable.shadow);
menu.setBehindOffsetRes(R.dimen.slidingmenu_offset);
menu.setFadeDegree(0.35f);
menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
menu.setSecondaryMenu(R.layout.login);