📅  最后修改于: 2023-12-03 14:53:10.135000             🧑  作者: Mango
在 Android 开发中,CheckBox 是一个常见的控件,用于允许用户选择一项或多项选项。在某些情况下,您需要检查 CheckBox 是否被选中,以便执行相应的操作。
要检查 CheckBox 是否选中,可以使用以下方法:
CheckBox checkBox = findViewById(R.id.checkbox);
if (checkBox.isChecked()) {
// CheckBox 被选中
} else {
// CheckBox 未被选中
}
CheckBox checkBox = findViewById(R.id.checkbox);
checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// CheckBox 被选中
} else {
// CheckBox 未被选中
}
}
});
以上两种方法都可以用来检查 CheckBox 是否选中。根据实际情况选择使用哪种方法。
注意事项: