03-21-2007, 10:09 AM
|
#1 (permalink)
|
| New Member
Join Date: Feb 2007 Model: 6320
Posts: 2
Post Thanks: 0 Thanked 0 Times in 0 Posts
| Problems with ChoiceGroup and Blackberry PEARL. Please Login to Remove! Hello.
Im developping an aplication in MIDP 2.0 for blackberry and i have a problem if i add more than one ChoiceGroup in mode EXCLUSIVE in a Form.
With all blackberrys works fine but with blackberry PEARL (8100) dont can navigate for all the options in the choiceGroup.
the code its simple:
//Global variable
private ChoiceGroup gHoraAplicar;
//in constructor
this.gHoraAplicar = new ChoiceGroup("TITLE", javax.microedition.lcdui.Choice.EXCLUSIVE, new java.lang.String[0], null);
this.gHoraAplicar.append("OPTION 1",null);
this.gHoraAplicar.append("OPTION 2",null);
this.gHoraAplicar.append("OPTION 3",null);
this.append(this.gHoraAplicar);
this way with more ChoiceGroup...
anyone have any idea?
thanks. |
| Offline
| |