Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
maybe a silly question... you press the menu button right? – Ovidiu Latcu Nov 29 '11 at 9:56
..lol...yes I have pressed the menu button, I have also tried it with and without: fav.setShowAsAction(MenuItem.SHOW_AS_ACTION_ALWAYS); – misterbassman Nov 29 '11 at 10:19
Hi, maybe this thread will help you or check the api demo for a working example. – kameny Nov 29 '11 at 10:47

2 Answers

up vote 37 down vote accepted

Have you called the super method?

@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
    // TODO Add your menu entries here
    super.onCreateOptionsMenu(menu, inflater);
}

Put log statements in the code to see if the method is not being called or if the menu is not being amended by your code.

Also try moving your code to the onPrepareOptionsMenu override to see if it makes a difference

share|improve this answer
1  
Thanks for the help, I added the super method, and realised I had removed the @Override so added this back in, eclipse threw an error so I replaced the MenuInflater to import android.view.MenuInflater; instead of import android.support.v4.view.MenuInflater; and now all is working – misterbassman Nov 29 '11 at 10:53
29  
not calling setHasOptionsMenu(true) in the Fragment's onCreate has gotten me twice now – Josh Jun 13 '12 at 12:54
2  
I was transferring my Activity to a Fragment and ran into this issue. The method signature has changed from public boolean to public void and the arguments have also changed. Make sure to take note of this! – you786 Jun 19 '12 at 3:24
@Kuffs - that's exactly what i needed, thanks! – cyborg86pl Sep 19 '12 at 20:24

If you find the onCreateOptionsMenu(Menu menu, MenuInflater inflater) method is not being invoked, make sure you call the following from the Fragment's onCreate(Bundle savedInstanceState) method:

setHasOptionsMenu(true)
share|improve this answer
+1 for specifying that setHasOptionMenu(true) should be called. – Andy Res Feb 27 at 12:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.