Skip to content

Instantly share code, notes, and snippets.

@shihabmi7
Last active November 21, 2015 04:47
Show Gist options
  • Save shihabmi7/6db21ceed3c73e97d80d to your computer and use it in GitHub Desktop.
Save shihabmi7/6db21ceed3c73e97d80d to your computer and use it in GitHub Desktop.
Sliding Menu Code
compile project('libraries:sliding_menu_library')
public void initializeSlidingMenu() {
menu = new SlidingMenu(this);
menu.setMode(SlidingMenu.LEFT);
menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setBehindOffset(200);
menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
menu.setMenu(R.layout.activity_sliding_menu);
menu.setSlidingEnabled(true);
// menuCategoryListView = (ListView) findViewById(R.id.listView_demo_category);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment