Package 

Class DefaultLoadingIndicatorAdapter

    • Method Summary

      Modifier and Type Method Description
      Unit onVisible() Called when the loading indicator is visible.
      Unit onHidden() Called when the loading indicator is hidden.
      View onCreateView(ViewGroup container) Called when the custom view is required.
      Unit onDestroy() Called when the layout is destroyed.
      • Methods inherited from class java.lang.Object

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

      • DefaultLoadingIndicatorAdapter

        DefaultLoadingIndicatorAdapter()
    • Method Detail

      • onVisible

         Unit onVisible()

        Called when the loading indicator is visible. If you use animations, then you can start the animation here.

      • onHidden

         Unit onHidden()

        Called when the loading indicator is hidden. If you use animations, then you can stop the animation here.

      • onCreateView

         View onCreateView(ViewGroup container)

        Called when the custom view is required. It will be injected into the SDK's layout.

        Parameters:
        container - the ViewGroup which will contain the returned view
      • onDestroy

         Unit onDestroy()

        Called when the layout is destroyed.