Skip to content

Instantly share code, notes, and snippets.

@jezinka
Last active April 16, 2017 13:37
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 jezinka/43d1b471b3d7e563f25787c9e0889c6d to your computer and use it in GitHub Desktop.
Save jezinka/43d1b471b3d7e563f25787c9e0889c6d to your computer and use it in GitHub Desktop.
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
/* ... */
case R.id.settings_item:
Intent settingsIntent = new Intent(this, SettingsActivity.class);
startActivity(settingsIntent);
return true;
/* ... */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment