I can easily do it when I am using onCreateOptionsMenu or onOptionsItemSelected methods.
But I have a button somewhere in screen, and on clicking that button, it should enable/disable context menu items.
Thanks...
|
I can easily do it when I am using But I have a button somewhere in screen, and on clicking that button, it should enable/disable context menu items. Thanks... |
||||
|
|
|
Anyway, This covers all the thing. Changing menu items at runtime
E.g.
On Android 3.0 and higher, the options menu is considered to always be open when menu items are presented in the action bar. When an event occurs and you want to perform a menu update, you must call invalidateOptionsMenu() to request that the system call onPrepareOptionsMenu(). |
|||||||||||
|
|
You could save the item as a variable when creating the option menu and then change its properties at will.
|
|||
|
|
|
Generally can change the properties of your views in runtime: (Button) item = (Button) findViewById(R.id.idBut); and then... item.setVisibility(false) but if you want to modify de visibility of the options from the ContextMenu, on press your button, you can activate a flag, and then in onCreateContextMenu you can do something like this: @Override public void onCreateContextMenu(ContextMenu menu, View v,ContextMenu.ContextMenuInfo menuInfo) {
I hope this helps |
|||||||||||
|