2013-12-22 1 views
-1

누군가 내가 실수를하고 있다고 나에게 말할 수 있습니까? RadioButtos를 내가 RadioGroup에 넣었을 때 왜 둘 다 선택할 수 있습니까? 여기 RadioButtons를 동적으로 만드는 방법

은 코드입니다 : 당신은 먼저 RadioGroupRadiobutton를 추가 한 경우에만 다음 호출 할 필요가

final Dialog dialog = new Dialog(context); 
LinearLayout ll = new LinearLayout(context); 
ll.setOrientation(LinearLayout.VERTICAL); 
dialog.setTitle("Title"); 

RadioButton rb_yes = new RadioButton(context); 
rb_yes.setText("yes"); 

RadioButton rb_no = new RadioButton(context); 
rb_no.setText("no"); 
rb_no.setChecked(true); 

RadioGroup radioGroup = new RadioGroup(context); 
radioGroup.setOrientation(RadioGroup.VERTICAL); 
radioGroup.addView(rb_yes); 
radioGroup.addView(rb_no); 

ll.addView(radioGroup); 

// "context" I've already created before (Context context = this) 

답변

1

rb_no.setChecked(true); 
+0

_____________thank을 – ioann