안드로이드에서 RadioGroup의 선택된 인덱스를 얻는 쉬운 방법이 있습니까? 아니면 OnCheckedChangeListener를 사용하여 변경 사항을 듣고 마지막으로 선택한 인덱스를 보유하고있는 것이 있습니까?
XML 예 :
<RadioGroup android:id="@+id/group1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical">
<RadioButton android:id="@+id/radio1" android:text="option 1" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio2" android:text="option 2" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio3" android:text="option 3" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio4" android:text="option 4" android:layout_width="wrap_content" android:layout_height="wrap_content" />
<RadioButton android:id="@+id/radio5" android:text="option 5" android:layout_width="wrap_content" android:layout_height="wrap_content" />
</RadioGroup>
사용자 option 3
가 인덱스를 얻고 싶습니다를 선택 하면 2.
답변
다음과 같은 작업을 수행 할 수 있어야합니다.
int radioButtonID = radioButtonGroup.getCheckedRadioButtonId();
View radioButton = radioButtonGroup.findViewById(radioButtonID);
int idx = radioButtonGroup.indexOfChild(radioButton);
RadioGroup
에 다른 Views (와 같은 TextView
) 가 포함되어 있으면 indexOfChild()
메소드는 잘못된 색인을 반환합니다.
에서 선택된 RadioButton
텍스트 를 얻으려면 RadioGroup
:
RadioButton r = (RadioButton) radioButtonGroup.getChildAt(idx);
String selectedtext = r.getText().toString();
답변
이것은 작동해야합니다.
int index = myRadioGroup.indexOfChild(findViewById(myRadioGroup.getCheckedRadioButtonId()));
답변
라디오 그룹에 대한 참조를 가지고 getCheckedRadioButtonId ()
체크 된 라디오 버튼 ID를 얻는 데 사용할 수 있습니다. 봐 여기
RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radio_group);
그런 다음 선택한 라디오 옵션을 가져와야합니다.
int checkedRadioButtonId = radioGroup.getCheckedRadioButtonId();
if (checkedRadioButtonId == -1) {
// No item selected
}
else{
if (checkedRadioButtonId == R.id.radio_button1) {
// Do something with the button
}
}
답변
이 시도
RadioGroup group= (RadioGroup) getView().findViewById(R.id.radioGroup);
group.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int i) {
View radioButton = radioGroup.findViewById(i);
int index = radioGroup.indexOfChild(radioButton);
}
});
답변
OnCheckedChangeListener를 사용하거나 getCheckedRadioButtonId ()를 사용할 수 있습니다
답변
당신이 사용할 수있는:
RadioButton rb = (RadioButton) findViewById(rg.getCheckedRadioButtonId());
답변
// 선택한 항목의 ID를 얻는 데 사용
int selectedID = myRadioGroup.getCheckedRadioButtonId();
// 선택한 항목을 봅니다.
View selectedView = (View)findViewById( selectedID);