I am having some trouble getting an options menu working in Android. I have built apps before, and they all worked fine, but now the menu just doesn\'t pop up.
The c
In the method: Fragment#onCreateView(...) you should put:
Fragment#onCreateView(...)
setHasOptionsMenu(true);
Then your method will be called.