Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my application there is a button and when the button is clicked the context menu pops up. How can I avoid having the context menu show up?

protected void makeMenu(Menu menu, int context){
    menu.add(_imageMenuItem);
    super.makeMenu(menu, context);
}

class ImageMenuItem extends MenuItem {      
    ImageMenuItem() {
        super("Login Screen", 0, 0);            
    }
    public boolean onMenu(int i) {
        return false;
    }

    public void run() {
        UiApplication app = (UiApplication) getApplication();
        app.pushScreen(new LoginScreen());
    }
}
share|improve this question

1 Answer

up vote 13 down vote accepted

have you added style to the ButtonField via the constructor?

ButtonField button = 
    new ButtonField("text", Field.H_CENTRE|ButtonField.CONSUME_CLICK);
share|improve this answer
Yea Adil,I added style to the ButtonField via the constructor I late to comment since I am out of station sorry – Jisson Feb 8 '11 at 4:54
btnSave=new ButtonField("Save",FIELD_HCENTER | FIELD_HCENTER); – Jisson Feb 8 '11 at 4:56
Thanks Adil,I got the solution ....when I added ButtonField.CONSUME_CLICK to the consructor . – Jisson Feb 8 '11 at 4:59
I have the same problem for a verticalfield manager, Do you have idea to resolve it? – Jisson Feb 8 '11 at 16:06
What type of problem, We need some code or more explanation. – Adil Soomro Feb 10 '11 at 5:04
show 5 more comments

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.