gpt4 book ai didi

java - isChecked 动态创建的复选框

转载 作者:行者123 更新时间:2023-12-02 07:11:50 25 4
gpt4 key购买 nike

我在运行时动态创建了一些复选框,现在我想知道其中一个是否被选中。我怎样才能做到这一点?

for (int i = 0; i < cnt; i++) {
cb = new CheckBox(getApplicationContext());
TextView txt = new TextView(getApplicationContext());
ll2 = new LinearLayout(
PollActivity.this);
ll2.setOrientation(LinearLayout.HORIZONTAL);

ll2.addView(cb);

ll.addView(ll2);

}

最佳答案

您需要设置CompoundButton.OnCheckedChangeListener让 CheckBox 在单击复选框时触发事件。示例:

cb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

@Override
public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {

// do your code here
}
});

关于java - isChecked 动态创建的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15404860/

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