public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// image.setBackgroundResource(isChecked?R.drawable.m:R.drawable.mm);
String x = String.valueOf(isChecked);
//Toast.makeText(this, x, Toast.LENGTH_SHORT).show();
if(isChecked)
{
Toast.makeText(this, "true运行"+x, Toast.LENGTH_SHORT).show();
image.setBackgroundResource(R.drawable.m);
}
Toast.makeText(this, "false运行"+x, Toast.LENGTH_SHORT).show();
image.setBackgroundResource(R.drawable.ic_launcher);
}
用注释的能正常运行。如果用if判断为什么不行呢。当我点击状态为On的时候,为什么true和false状态都会触发?
过气可乐
相关分类