I was having the same problem (menu not showing up, onCreateOptionsMenu
not being called).
If you are calling this within a fragment, you need to override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater)
not public boolean onCreateOptionsMenu(Menu menu)
. Fragments
do not use the latter, so they will never even call it.