CoordinatorBehaviorExample
CoordinatorBehaviorExample copied to clipboard
Menu onOptionsItemSelected issue
trafficstars
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!
This is something you should probably be doing anyways.