-
Notifications
You must be signed in to change notification settings - Fork 581
Open
Description
For this example if you directly add onOptionsItemSelected it will not work. To solve this you need to add one line of code:
...
mToolbar.inflateMenu(R.menu.menu_main);
// add this line
setSupportActionBar(mToolbar);
...
And now it works! But the default title is annoying, so add another line to remove default title.
...
mToolbar.inflateMenu(R.menu.menu_main);
// add this line
setSupportActionBar(mToolbar);
setTitle("");
...
Cheers!
Metadata
Metadata
Assignees
Labels
No labels