gpt4 book ai didi

Android 控制 TableLayout 中选中的复选框

转载 作者:行者123 更新时间:2023-11-30 04:26:06 26 4
gpt4 key购买 nike

我有一个 TableLayout,我正在动态添加行。在每一行中,我还有一个复选框。

我的问题是控制选中哪些复选框,我什至不知道如何循环每一行。请帮助我。

最佳答案

Checkbox checkbox;

checkbox = (CheckBox) findViewById(R.id.checkbox);

checkBox.setChecked(false);

或为真。这应该有效,只需将复选框替换为您的变量和@+id

编辑:

您可以实现 OnCheckedChangeListener,然后使用类似的东西

@Override
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
// TODO Auto-generated method stub
switch (arg0.getId()) {
case R.id.checkbox1:
if (checkbox1.isChecked()){
//code to use when user checks the box
}else{
//code to use when user UNchecks the box
}
break;

}
}

关于Android 控制 TableLayout 中选中的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8482317/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com