Hide MenuItem in some Fragments

后端 未结 13 2175
南方客
南方客 2020-12-07 20:00

I using menu drawer which has more Fragments. In some Fragments I have menu item REFRESH but in some fragments I want hide this menu item (I don\'t

13条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-07 20:45

    Call setHasOptionMenu(true) in onCreateView()

    and Do not call super.onCreateOptionsMenu() in fragment's onCreateOptionMenu() instead call menu.clear() because this will override the existing menu with the activity's menu

    This worked in my case.

提交回复
热议问题