//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);
}
8条答案
按热度按时间pkbketx91#
真正的技巧是循环遍历所有子视图(在本例中:
CheckBox
)并将其称为setEnabled(boolean)
类似下面这样的东西应该可以做到:
20jt8wwn2#
如果只有几个单选按钮,更好的方法是为所有子级设置setClickable(false
bqf10yzr3#
RadioGroup不能直接禁用,我们必须遍历单选按钮并将setEnabled设置为false。
qkf9rpyu4#
如果你想为Kotlin实现同样的功能,这是我的代码-〉其中rgNotificationType是无线电组名。
jecbmhm35#
您可以在CheckBox上使用onCheckedChangeListener,并在RadioGroup上使用方法setEnabled。
祝福你,蒂姆
p5cysglq6#
通过使用kolin的扩展:
在你的代码中,你可以像这样调用这个函数:
siotufzp7#
Kotlin溶液
vbopmzt18#
根据复选框的状态执行操作,并相应地设置放射组。假设您有一个名为放射组的放射组,则可以通过以下方式启用或禁用放射组
无线电组设置已启用(真);
将OnCheckedChangeListener()添加到复选框中。