I using menu drawer which has more Fragments. In some Fragments I have menu item REFRESH but in some fragments I want hide this menu item (I don\'t
Fragment
In the fragment where you want to hide the Item
@Override public void onPrepareOptionsMenu(Menu menu) { MenuItem item=menu.findItem(R.id.action_search); if(item!=null) item.setVisible(false); }
and in onCreate() of your fragment
setHasOptionsMenu(true);