Package 

Interface Content

    • Method Summary

      Modifier and Type Method Description
      abstract View getView() Returns the visual display of this content.
      abstract boolean isFullscreen()
      abstract void onShown() Called when this content is displayed to the user.
      abstract void onHidden() Called when this content is no longer displayed to the user.
      • Methods inherited from class java.lang.Object

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

      • onShown

         abstract void onShown()

        Called when this content is displayed to the user.

      • onHidden

         abstract void onHidden()

        Called when this content is no longer displayed to the user.Implementation Note: {@code Content} can be brought back due to user navigation sothis call must not release resources that are required to show this content again.