Skip to content

Instantly share code, notes, and snippets.

@yaronv
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaronv/635beeba75c30628c4f4 to your computer and use it in GitHub Desktop.
Save yaronv/635beeba75c30628c4f4 to your computer and use it in GitHub Desktop.
public void onTouchDrawer(final int position) {
if (lastMenu == position) return;
switch (lastMenu = position) {
case 1:
openFragment(new HomeFragment());
break;
case 2:
openFragment(new FlightsFragment());
break;
case 3:
openFragment(new HotelsFragment());
break;
default:
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment