Fragment not receiving menu callbacks

Aromero, Don’t forget to override the onCreateOptionsMenu using the fragment version of the method, similar to this: @Override public void onCreateOptionsMenu (Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.queue_options, menu); super.onCreateOptionsMenu(menu, inflater); } This goes in the fragment, by the way, and adds to the inflated menu of the Activity, if there is one. Had the same …

Read more