我正在尝试在单击单个按钮时清除复选框的所有复选标记,代码对我来说似乎没问题,但它不起作用。复选框的布局不同...在我目前的活动中,我正在夸大复选框并执行 setChecked(false)(不起作用)..还有其他方法吗?
Button clearbtn1 = (Button) findViewById(R.id.clearbtn);
clearbtn1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
LayoutInflater inflater_example = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v1= inflater_example.inflate(R.layout.profile, null);
CheckBox checkBox = (CheckBox) v1.findViewById(R.id.checkBox1);
checkBox.setChecked(false);
}
});
任何帮助,将不胜感激。