我試圖在裏面有2個單選按鈕的地方使用收音機組。我想爲每個單選按鈕設置一個值,例如值爲男性和女性。之後,當我點擊我的單選按鈕時,它將顯示所選的值。你怎麼能做到這一點?感謝您的幫助。如何設置收音機組內的單選按鈕的值android
我已經試過這樣的事情只是爲了測試在我將如何設置一個值
public void onRadioButtonClicked(View radioButton) {
int count = radioGroup.getChildCount();
for (int i = 0; i < count; i++) {
View o = radioGroup.getChildAt(i);
if (o instanceof RadioButton) {
RadioButton radioBtn = (RadioButton)o;
// get the state
boolean isChecked = radioBtn.isChecked();
// to set the check
radioBtn.setChecked(true);
}
}
}
但我認爲它不是我要找的。
我已經試過radioGroup.setId()
假設單選按鈕已經有值,但它只是顯示無意義的數字。
如果你還沒有嘗試過什麼是建議你做。這可能有助於:OnCheckedChangeListener –
我已更新我的問題@Karakuri –