I am trying to add an item to the options menu from a group of fragments.
I have created a new MenuFragment class and extended this for the fragments I wish to include the menu item in. Here is the code:
public class MenuFragment extends Fragment {
MenuItem fav;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
}
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
fav = menu.add("add");
fav.setIcon(R.drawable.btn_star_big_off);
}
}
For some reason the onCreateOptionsMenu appears not to run.
Any help would be appreciated.