Reputation: 6799
The problem is that the following method gets called one time when the Menu button is pressed:
public boolean onCreateOptionsMenu(Menu menu)
How can I recreate the menu at a later time in order to change some options, disable some options, etc?
Upvotes: 8
Views: 9706
Reputation: 382
invalidateOptionsMenu();
if you want to push the menu changes use this.
Upvotes: 0
Reputation: 68474
Override this onPrepareOptionsMenu(Menu menu)
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
MenuItem item = menu.findItem(R.id.refresh);
if (item != null) {
item.setVisible (shouldIShowThisItem)
}
}
Upvotes: 23