Skip to content

Instantly share code, notes, and snippets.

@scottferg
Created July 27, 2012 19:16
Show Gist options
  • Save scottferg/3189926 to your computer and use it in GitHub Desktop.
Save scottferg/3189926 to your computer and use it in GitHub Desktop.
MenuInflater example
@Override
public boolean onCreateOptionsMenu(Menu aMenu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.my_main_menu, aMenu);
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment