Android - Menu Item Not Showing In Action Bar
I'm trying to add menu item 'done' in the action bar. I just copied and modified the code from another activity that has menu items showing. So it should work properly. Here's the
Solution 1:
You should use below method after initialization of Toolbar.
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
Post a Comment for "Android - Menu Item Not Showing In Action Bar"