我已经在 android 中制作了一个简单的自定义复选框程序,因为我根据用户操作将两个图像用于“故障”和“检查”状态,
我的代码是:
final ImageView chekbx =(ImageView)dialog.findViewById(R.id.chk_login);
if(chekbx.isSelected()){
System.out.println("checkbox check");
chekbx.setBackgroundResource(R.drawable.checkbox_ticked);
}else{
chekbx.setBackgroundResource(R.drawable.checkbox);
}