I am working on xamarin android application.I am not able to create OptionMenu in Fragments. I have tried this code but not worked.
public override void OnCreateOptionsMenu (IMenu menu, MenuInflater inflater){
inflater.Inflate(Resource.Layout.Menu,menu);
base.OnCreateOptionsMenu (menu, inflater);
}
What is the solution?