I am trying to inflate a menu in a class that inherits the Fragment
class.
Here is my OnCreateOptionsMenu()
method -
@Override
public bo
The signature of your onCreateOptionsMenu
doesn't look right. Take a look at the docs here
Take a look this code
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);//Make sure you have this line of code.
}
@Override
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
// TODO Add your menu entries here
super.onCreateOptionsMenu(menu, inflater);
}