Android-如何判別CheckBox被勾選(複選元件) Android-如何判別CheckBox被勾選(複選元件) 2015-09-29 jashliao Comments 0 Comment Android-如何判別CheckBox被勾選(複選元件) 語法:if((c1.isChecked())==true) 範例: CheckBox c1 = (CheckBox) findViewById(R.id.checkBox1); if((c1.isChecked())==true) { }