Package com.pspdfkit.ui.inspector
Interface PropertyInspectorCoordinatorLayoutController.PropertyInspectorLifecycleListener
-
- All Implemented Interfaces:
public interface PropertyInspectorCoordinatorLayoutController.PropertyInspectorLifecycleListener
Listener for the lifecycle of the PropertyInspector as it goes through the .
-
-
Method Summary
Modifier and Type Method Description abstract void
onPreparePropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is prepared to be displayed in the . abstract void
onDisplayPropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is displayed in the . abstract void
onRemovePropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is removed from the . -
-
Method Detail
-
onPreparePropertyInspector
abstract void onPreparePropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is prepared to be displayed in the . Here you can change the inspector views.
- Parameters:
inspector
- Property inspector prepared for displaying in the coordinator.
-
onDisplayPropertyInspector
abstract void onDisplayPropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is displayed in the .
- Parameters:
inspector
- Property inspector that is displayed in the coordinator.
-
onRemovePropertyInspector
abstract void onRemovePropertyInspector(@NonNull() PropertyInspector inspector)
Called when PropertyInspector is removed from the .
- Parameters:
inspector
- Property inspector that is removed from the coordinator.
-
-
-
-