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!
For this example if you directly add
onOptionsItemSelectedit will not work. To solve this you need to add one line of code:And now it works! But the default title is annoying, so add another line to remove default title.
Cheers!