How can I alter a MenuItem on the Options Menu on Android?

后端 未结 6 1305
耶瑟儿~
耶瑟儿~ 2020-12-08 03:59

I have an Options Menu on my Activity with an MenuItem \"Start\". When this MenuItem is selected I would like to alter the Menu so it

6条回答
  •  温柔的废话
    2020-12-08 04:47

    On Android 3.0 and higher, you should call invalidateOptionsMenu() to request that the system calls onPrepareOptionsMenu(). You can then modify the options menu in the method. You can check the Changing menu items at runtime section of the Android documentation here https://developer.android.com/guide/topics/ui/menus#options-menu for more details.

提交回复
热议问题