Android-如何判別CheckBox被勾選或取消勾選後的事件 Android-如何判別CheckBox被勾選或取消勾選後的事件 2015-09-29 jashliao Comments 0 Comment Android-如何判別CheckBox被勾選或取消勾選後的事件 語法:if((c1.isChecked())==true){}esle{} 範例: CheckBox c1 = (CheckBox) findViewById(R.id.checkBox1); if(c1.isChecked()==true) { } else { }