アプリ内で特定のチェックボックスが選択されるまで、ユーザーがボタンを選択できないようにするラジオグループがあります。チェックボックスがオフの場合、これはラジオグループを無効にします。これを行うにはどうすればよいですか。
本当のトリックは、すべての子ビュー(この場合はCheckBox
)をループしてsetEnabled(boolean)
を呼び出すことです
このようなことがうまくいくはずです:
//initialize the controls
final RadioGroup rg1 = (RadioGroup)findViewById(R.id.radioGroup1);
CheckBox ck1 = (CheckBox)findViewById(R.id.checkBox1);
//set setOnCheckedChangeListener()
ck1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton checkBox, boolean checked) {
//basically, since we will set enabled state to whatever state the checkbox is
//therefore, we will only have to setEnabled(checked)
for(int i = 0; i < rg1.getChildCount(); i++){
((RadioButton)rg1.getChildAt(i)).setEnabled(checked);
}
}
});
//set default to false
for(int i = 0; i < rg1.getChildCount(); i++){
((RadioButton)rg1.getChildAt(i)).setEnabled(false);
}
CheckBoxで onCheckedChangeListener を使用し、RadioGroupでメソッド setEnabled を使用できます。
最高の願い、ティム
ラジオボタンが少ししかない場合は、すべての子に対してsetClickable(false)を使用する方が良いでしょう。
radiobutton1.setClickable(false);
radiobutton2.setClickable(false);
radiobutton3.setClickable(false);
RadioGroupを直接無効にすることはできません。ラジオボタンをループして、setEnabledをfalseに設定する必要があります。
// To disable the Radio Buttons of radio group.
for (int i = 0; i < radioGroup.getChildCount(); i++) {
radioUser.getChildAt(i).setEnabled(false);
}
Kotlinソリューション
for (index in 0..radio.childCount - 1)
radio.getChildAt(index).isEnabled = false