Skip to content
Advertisement

MenuItem doesn’t appear in toolbar

I’m facing a problem. I can’t make a toolbar to show me a menu. I know that this question was asked here previously here, and I went through all possible solutions, but none of them gave me desired result. So I’m using 1 activity and few fragments and I want to show different menu items in a toolbar according to fragment. Here is my MainActivity.java

JavaScript

And i want to show LogIn text in ProfileFragment toolbar ProfileFragment.java code:

JavaScript

profile_fragment_menu.xml

JavaScript

mobile_navigation.xml holds navigation graph

JavaScript

I tried toolbar.inflateMenu(R.menu.profile_fragment_menu) in MainActivity within onCreate method and menu item appeared and was clickable but it was showing on all fragments + onOptionsItemSelected didn’t process click on item. My last try you can see in my code. Thank you in advance

Advertisement

Answer

If you want to use the Toolbar as ActionBar and use the ActionBar API (as onCreateOptionsMenu) you have to add setSupportActionBar(toolbar);

JavaScript

Otherwise if you don’t call setSupportActionBar you can use the Toolbar APIs directly and use the method inflateMenu() in each fragment. Something like:

JavaScript

and then use the setOnMenuItemClickListener method to set a clickListener.

Advertisement