AFAIK ButtonGroup
을 ResourceEdit # GUI에서 가져올 수 없습니다. 그룹 이름은 RadioButton
(으)로만 가능합니다. 그러나 코드를 통해 ButtonGroup
에 RadioButton
을 추가 할 수 있습니다. ,
Form form = (Form) this.startApp(resources, null, true);
RadioButton rb1 = this.findRadioButton(form);
RadioButton rb = this.findRadioButton1(form);
ButtonGroup bg = new ButtonGroup();
bg.add(rb);
bg.add(rb1);
bg.setSelected(0);
StateMachine(String resFile)
생성자 (당신의 MIDlet 클래스의 내부에이 코드를 사용)를 호출 들어, StateMachine()
생성자 (생성자 내부에이 코드를 사용)를 호출은 다음 코드
를 참조
StateMachine sm = new StateMachine("/Sample.res");
RadioButton rb1 = sm.findRadioButton(Display.getInstance().getCurrent());
RadioButton rb = sm.findRadioButton1(Display.getInstance().getCurrent());
ButtonGroup bg = new ButtonGroup();
bg.add(rb);
bg.add(rb1);
bg.setSelected(0);
글쎄, 당신이 쓴 것은 우리 계획 B 였지만 재미있는 정보입니다. 감사 – mdelolmo