I am trying to have a options menu in Android Fragments. ActionBar options menu are not displaying in my Fragments.
Here is my code and
You need to call setHasOptionsMenu(true) in onCreate().
For backwards compatibility it's better to place this call as late as possible at the end of onCreate() or even later in onActivityCreated() or something like that.
See: https://developer.android.com/reference/android/app/Fragment.html#setHasOptionsMenu(boolean)