Interface POBHtmlRendererListener

    • 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
      abstract void onViewRendered(@NonNull() View view) Notifies the view render event of the HTML rendering.
      abstract void onViewRenderingFailed(@NonNull() POBError error) Notifies the failure cause of the HTML rendering
      abstract void onViewClicked(@Nullable() String url) Notifies the click event when click event happens on HTML Renderer view.
      abstract void onRenderProcessGone() Notifies the Rendering Process terminated, clean up the views by destroying and removing it from View hierarchy.
      • Methods inherited from class java.lang.Object

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

    • Method Detail

      • onViewRendered

         abstract void onViewRendered(@NonNull() View view)

        Notifies the view render event of the HTML rendering.

        Parameters:
        view - Rendered view
      • onViewRenderingFailed

         abstract void onViewRenderingFailed(@NonNull() POBError error)

        Notifies the failure cause of the HTML rendering

        Parameters:
        error - Error object which will have failure cause
      • onViewClicked

         abstract void onViewClicked(@Nullable() String url)

        Notifies the click event when click event happens on HTML Renderer view.

        Parameters:
        url - the url which gets generated on view click
      • onRenderProcessGone

         abstract void onRenderProcessGone()

        Notifies the Rendering Process terminated, clean up the views by destroying and removing it from View hierarchy.