android 如何在选中复选框之前禁用RadioGroup

56lgkhnf  于 2023-02-06  发布在  Android
关注(0)|答案(8)|浏览(318)

我有一个单选按钮组,我不希望用户能够选择任何按钮,直到我的应用程序中的特定复选框被选中。如果复选框被取消选中,那么这将禁用单选按钮组。我如何去做这件事。

pkbketx9

pkbketx91#

真正的技巧是循环遍历所有子视图(在本例中: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);
}
20jt8wwn

20jt8wwn2#

如果只有几个单选按钮,更好的方法是为所有子级设置setClickable(false

radiobutton1.setClickable(false);
radiobutton2.setClickable(false);
radiobutton3.setClickable(false);
bqf10yzr

bqf10yzr3#

RadioGroup不能直接禁用,我们必须遍历单选按钮并将setEnabled设置为false。

// To disable the Radio Buttons of radio group.
    for (int i = 0; i < radioGroup.getChildCount(); i++) {
        radioUser.getChildAt(i).setEnabled(false);
    }
qkf9rpyu

qkf9rpyu4#

如果你想为Kotlin实现同样的功能,这是我的代码-〉其中rgNotificationType是无线电组名。

for (i in 0 until rgNotificationType.childCount) {
        (rgNotificationType.getChildAt(i)).isEnabled = false
    }
jecbmhm3

jecbmhm35#

您可以在CheckBox上使用onCheckedChangeListener,并在RadioGroup上使用方法setEnabled。
祝福你,蒂姆

p5cysglq

p5cysglq6#

通过使用kolin的扩展:

fun RadioGroup.setChildrenEnable(enable: Boolean) {
    for (i in 0 until this.childCount) {
        this.getChildAt(i).isEnabled = enable
    }
}

在你的代码中,你可以像这样调用这个函数:

radioGroup.setChildrenEnable(false)
siotufzp

siotufzp7#

Kotlin溶液

for (index in 0..radio.childCount - 1)
    radio.getChildAt(index).isEnabled = false
vbopmzt1

vbopmzt18#

根据复选框的状态执行操作,并相应地设置放射组。假设您有一个名为放射组的放射组,则可以通过以下方式启用或禁用放射组
无线电组设置已启用(真);
将OnCheckedChangeListener()添加到复选框中。

相关问题