09-17-2008 03:01 PM
Hi all! I'm new to this Java development and I have a silly question to ask. Whenever I press a ButtonField this "Close" menu at the bottom of my BB Pearl pops up and had to press "Back" every after button click to get rid of it. Is it possible to disable it? Thanks!
- Ryan
09-17-2008 03:13 PM
You'll want it to "consume" the click. For example:
ButtonField fooButton = new ButtonField("Foo", ButtonField.CONSUME_CLICK);
add(fooButton);
10-01-2008 02:04 PM