android: changing option menu items programmatically

前端 未结 12 1926
终归单人心
终归单人心 2020-12-02 09:33

Is it possible to change the option menu items programmatically? Can anyone provide me with an example please?

Also, I want to disable certain items, so that they do

12条回答
  •  爱一瞬间的悲伤
    2020-12-02 10:01

    To disable certain items:

    MenuItem item = menu.findItem(R.id.ID_ASSING_TO_THE_ITEM_IN_MENU_XML);
    item.setEnabled(false);
    

提交回复
热议问题