Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

3 Answers

up vote 52 down vote accepted

Anyway,

This covers all the thing.

Changing menu items at runtime

Once the activity is created, the onCreateOptionsMenu() method is called only once, as described above. The system keeps and re-uses the Menu you define in this method until your activity is destroyed. If you want to change the Options Menu any time after it's first created, you must override the onPrepareOptionsMenu() method. This passes you the Menu object as it currently exists. This is useful if you'd like to remove, add, disable, or enable menu items depending on the current state of your application.

E.g.

@Override
public boolean onPrepareOptionsMenu (Menu menu) {
    if (isFinalized)
        menu.getItem(1).setEnabled(false);
    return true;
}

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().

share|improve this answer
setEnable() does change what happens when you press this menu but doesn't change how it looks (what's wrong, Android developers?). So it is clearer to either disable and change the title, or preferably just make the MenuItem invisible. – Ivanchenko Vladimir Aug 17 '12 at 17:58
2  
Quick tip: return false to disable the menu completely. – Bart Friederichs Dec 27 '12 at 11:25
3  
Plus the API comment on onPrepareOptionsMenu clearly states: Deriving classes should always (!) call through to the base class implementation. You forgot your super call there. – Zainodis Jan 16 at 20:43

You could save the item as a variable when creating the option menu and then change its properties at will.

private MenuItem securedConnection;
private MenuItem insecuredConnection;

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.connect_menu, menu);
    securedConnection = menu.getItem(0);
    insecuredConnection =  menu.getItem(1);
    return true;
}

public void foo(){
       securedConnection.setEnabled(true);
}    
share|improve this answer

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) {

    super.onCreateContextMenu(menu, v, menuInfo);

        menu.setHeaderTitle(R.string.context_title);

        if (flagIsOn()) {
            addMenuItem(menu, "Option available", true);
        } else {
            Toast.makeText(this, "Option not available", 500).show();
        }

}

I hope this helps

share|improve this answer
I must say you are getting wrong, I want menu item to be disabled, not Button. – Vikas Mar 26 '11 at 8:07
my answer is completed. This code it works, I've used in my projects – Eric Mar 26 '11 at 8:21
Well thanks for work, but You should read question properly that I've already stated that I can change it in onCreateContextMenu method. But I want to access the context menu out side from this method. – Vikas Mar 26 '11 at 8:34
onCreateContextMenu will be called only once, but I can click on button lots of time to enable/disable menu item. – Vikas Mar 26 '11 at 8:49
Yes, but the context menu normally is done to be hidden. If you press your 'somewhere button' and set the flag as I said, this context menu is not visible and the next time that you reload your context menu, this option will be invisible. Another option is to do another kind of menu with the same appearance to handle the events with another methods. – Eric Mar 26 '11 at 8:58
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.