I want to put a Listener over a CheckBox
. I looked for info and it is like this:
satView = (CheckBox)findViewById(R.id.sateliteCheckBox);
satView.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
if (isChecked){
// perform logic
}
}
});
The problem is that Eclipse thinks it's an OnCheckedChangeListener
for a RadioGroup
and it doesn't work. How can I fix this?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…