Interface IndeterminateRadioButton.OnStateChangedListener

  • Enclosing class:
    IndeterminateRadioButton

    public static interface IndeterminateRadioButton.OnStateChangedListener
    Interface definition for a callback to be invoked when the checked state 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