小弟在项目中自定义了一个alertdialog对话框,并在上面有一个CheckBox控件。
其中在onCreate函数中:
nomoreCheckBox = (CheckBox) linearLayout.findViewById(R.id.nomore); nomoreCheckBox.setOnCheckedChangeListener(dialogListener);
在onCreate下面写了监听器:
public CompoundButton.OnCheckedChangeListener dialogListener = new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) {
Log.i("MainActivity","按下了复选框按钮");
if(nomoreCheckBox.isChecked() == true){
Log.i("MainActivity","按下勾选");
checkBoxControl = false;
}
else if (nomoreCheckBox.isChecked() == false){
Log.i("MainActivity","按下取消勾选");
checkBoxControl = true;
}
}
};
在app中点击该CheckBox复选框,打印出来的日志根本没有进入到这个函数中,请问该怎么解决?谢谢大神!