Skip to content

Instantly share code, notes, and snippets.

@Ikhiloya
Created June 1, 2019 23:05
Show Gist options
  • Select an option

  • Save Ikhiloya/a47b41c38d459eda3d749b8406ef1b49 to your computer and use it in GitHub Desktop.

Select an option

Save Ikhiloya/a47b41c38d459eda3d749b8406ef1b49 to your computer and use it in GitHub Desktop.
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.search:
onSearchCalled();
return true;
case android.R.id.home:
finish();
return true;
default:
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment