You are on page 1of 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

You might also like