How can I refresh the ActionBar when onPrepareOptionsMenu switched menu entries?

后端 未结 10 1400
予麋鹿
予麋鹿 2020-12-02 12:05

Within my apps I often enable/disable menu entries and do make them visible from onPrepareOptionsMenu.

Today I started to add the android:showAsAction menu attribute

10条回答
  •  攒了一身酷
    2020-12-02 12:46

    save a reference to the menu and call:

    this.menu.clear();
    this.onCreateOptionsMenu(this.menu);
    

提交回复
热议问题