如何在J2ME中设置CHECK BOX的默认值

时间:2011-12-30 05:24:19

标签: java-me checkbox default-value

我在J2ME中创建了复选框,我希望所有默认值复选框为true,请为它建议一些代码

1 个答案:

答案 0 :(得分:2)

如果您使用的是ChoiceGroup ..

ChoiceGroup cg = new ChoiceGroup("sample",ChoiceGroup.MULTIPLE); 
 // add some choices to the group using cg.append()
boolean array = new boolean[cg.size()];
// initialize all the elements of array to true..
cg.setSelectedFlags(array);
// do more processing 

希望这可能会有所帮助,有关详细信息,请参阅javaDocs