Class FormEditingBar

    • Method Detail

      • isDisplayed

         boolean isDisplayed()

        True when form input bar is currently displayed on the screen.

      • getBackgroundColor

         int getBackgroundColor()

        Returns background color set to the form editing bar.

        Returns:

        Background color applied to this form editing bar.

      • setBackgroundColor

         void setBackgroundColor(int backgroundColor)

        Sets background color to the form editing bar.

        Parameters:
        backgroundColor - Background color to be applied to this form editing bar.
      • getTextColor

         int getTextColor()

        Return color of the text on this form editing bar.

        Returns:

        Text color on form editing bar.

      • setTextColor

         void setTextColor(int textColor)

        Sets color of the text on this form editing bar.

        Parameters:
        textColor - Text color on form editing bar.
      • getIconsColor

         int getIconsColor()

        Returns color of the icons on this form editing bar.

        Returns:

        Tint of the icons on the bar.

      • setIconsColor

         void setIconsColor(int iconColor)

        Sets color of the icons on this form editing bar.

        Parameters:
        iconColor - Tint of the icons on the bar.
      • getPrevIcon

         int getPrevIcon()

        Return resource id of the icon marking navigation to the previous form.

        Returns:

        Previous form navigation button icon.

      • setPrevIcon

         void setPrevIcon(int prevIconResId)

        Sets resource id of the icon marking navigation to the previous form.

        Parameters:
        prevIconResId - Previous form navigation button icon.
      • getNextIcon

         int getNextIcon()

        Return resource id of the icon marking navigation to the next form.

        Returns:

        Next form navigation button icon.

      • setNextIcon

         void setNextIcon(int nextIconResId)

        Sets resource id of the icon marking navigation to the next form.

        Parameters:
        nextIconResId - Next form navigation button icon.
      • unbindController

         void unbindController()

        Unbinds from form editing controller. Animates form editing bar out of view.

      • onChangeFormElementEditingMode

         void onChangeFormElementEditingMode(@NonNull() FormEditingController controller)

        Called then form element editing mode changes, meaning another form element is being selected for editing.

        Parameters:
        controller - Controller for managing form element editing.