Package icyllis.modernui.widget
Interface CheckBox.OnCheckedStateChangeListener
- Enclosing class:
CheckBox
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback interface invoked when one of three independent checkbox states change.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onCheckedStateChanged
(CheckBox checkBox, int state) Called when the checked/indeterminate/unchecked state of a checkbox changes.
-
Method Details
-
onCheckedStateChanged
Called when the checked/indeterminate/unchecked state of a checkbox changes.- Parameters:
checkBox
- theCheckBox
state
- the new state of the checkbox
-