Interface FormManager.OnFormElementClickedListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      boolean isFormElementClickable(@NonNull() FormElement formElement) Called when user clicks on a form element.
      abstract boolean onFormElementClicked(@NonNull() FormElement formElement) Called when user clicks on form element.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • isFormElementClickable

         boolean isFormElementClickable(@NonNull() FormElement formElement)

        Called when user clicks on a form element.

        Returns:

        True to proceed with handling click on the form element, false to prevent click on the form element.

      • onFormElementClicked

         abstract boolean onFormElementClicked(@NonNull() FormElement formElement)

        Called when user clicks on form element.

        Returns:

        true when click was consumed by this listener.