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 don't listen to the clicks, is it possible?
Thanks.
|
|
You can do that in onPrepareOptionsMenu(). |
|||
|
|
|
menu.xml
put in your java file
|
|||
|
|
|
If I have to change the contents of my options menu I perform it during the onMenuOpened(). This allows me to check the running state at the very moment that the user is accessing the menu.
|
|||
|
|
|
For anyone needs to change the options of the menu dynamically:
|
|||||||||
|
|
Like Nikolay said do that in onPrepareOptionsMenu(). For menu items in the action bar you have to invalidate the menu with
This is descriped in more detail here How can I refresh the ActionBar when onPrepareOptionsMenu switched menu entries? |
|||
|
|
|
To disable certain items:
|
|||
|
|