Sie sind auf Seite 1von 1

CheckBox

Determine the CheckBox state


#xml
android:id=@+id/cb
#onCreate/Anywhere
CheckBox cb=(CheckBox) findViewById(R.id.cb);
if (cb.isChecked==true) {
} else {
}
#end

Das könnte Ihnen auch gefallen