Package com.pspdfkit.ui.inspector
Interface PropertyInspectorTitleButtonListener
-
- All Implemented Interfaces:
public interface PropertyInspectorTitleButtonListener
Base interface for PropertyInspector allows to override the close and back button behavior. If any of these function return
true
they swallow the click, otherwise the caller closes the inspector, respectively navigates back from a detail view. This interface may also be implemented by property inspector detail views if they require some special handling for close/back.
-
-
Method Summary
Modifier and Type Method Description boolean
onBackButtonClicked()
boolean
onCloseButtonClicked()
-
-
Method Detail
-
onBackButtonClicked
boolean onBackButtonClicked()
- Returns:
true
if the click was consumed, otherwise false
-
onCloseButtonClicked
boolean onCloseButtonClicked()
-
-
-
-