How to add Action bar options menu in Android Fragments

后端 未结 3 1992
囚心锁ツ
囚心锁ツ 2020-11-29 01:44

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

3条回答
  •  生来不讨喜
    2020-11-29 02:30

    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)

提交回复
热议问题