05-12-2009 01:14 PM
Hello,
I haven't created any menu in my application.
I dynamically add a button to a screen using this code:
ButtonField getDetailsButton = new ButtonField("See details", Field.FOCUSABLE | Field.FIELD_RIGHT); getDetailsButton.setChangeListener(new FieldChangeListener() {public void fieldChanged(Field field, int context) { ((CampaignManagementScreen)field.getScreen()).requ
estInfo("test");}});
Problem is, when I click a button using the trackwheel, a popup menu shows with an item "full menu". Then my action is performed normally. Do you know I can get rid of that menu?
thanks
Solved! Go to Solution.
05-12-2009 01:36 PM
You need to set the style CONSUME_CLICK in your buttonfield constructor.
05-12-2009 01:45 PM