Interface PropertyInspectorView

    • 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
    • Constructor Detail

    • Method Detail

      • isViewStateRestorationEnabled

         boolean isViewStateRestorationEnabled()

        Flag to determine whether to save the state by calling on the view the saveHierarchyState to save its state and restoreHierarchyState to restore it. Defaults to false. When enabled, the view must implement View#onSaveInstanceState and View#onRestoreInstanceState, and a unique id must be set by setId.

      • unbindController

         abstract void unbindController()

        Unbind from property inspector controller.

      • onShown

         void onShown()

        Called when this inspector view became visible.

      • onHidden

         void onHidden()

        Called when this inspector view was hidden.

      • getPropertyInspectorMinHeight

         abstract int getPropertyInspectorMinHeight()

        Height of the parent PropertyInspector that this view would like it to have.

        Returns:

        Hint for the minimum inspector height or 0 if no min height is specified.

      • getPropertyInspectorMaxHeight

         abstract int getPropertyInspectorMaxHeight()

        Returns maximum height that this view with all its detail views will occupy.

        Returns:

        Hint for the maximum inspector height or 0 if no max height is specified.

      • getSuggestedHeight

         abstract int getSuggestedHeight()

        Returns best height of this view when shown in inspector. This is used to suggest initial height to inspector parent.

        Returns:

        Hint for the view height after being shown in inspector.