Package ch.poole.android.checkbox
Interface IndeterminateRadioButton.OnStateChangedListener
-
- Enclosing class:
- IndeterminateRadioButton
public static interface IndeterminateRadioButton.OnStateChangedListenerInterface definition for a callback to be invoked when the checked state changed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonStateChanged(IndeterminateRadioButton radioButton, java.lang.Boolean state)Called when the indeterminate state has changed.
-
-
-
Method Detail
-
onStateChanged
void onStateChanged(IndeterminateRadioButton radioButton, @Nullable java.lang.Boolean state)
Called when the indeterminate state has changed.- Parameters:
radioButton- The RadioButton whose state has changed.state- The state of buttonView. Value meanings: null = indeterminate state true = checked state false = unchecked state
-
-