Package com.pspdfkit.ui.navigation
Interface NavigationBackStack.BackStackListener
-
- All Implemented Interfaces:
public interface NavigationBackStack.BackStackListener<T>
Listener for changes to the navigation back stack.
-
-
Method Summary
Modifier and Type Method Description abstract void
onBackStackChanged()
Called whenever the contents of the backstack change. abstract void
visitedItem(@NonNull() T item)
Called when the backstack is moved to the item. -
-
Method Detail
-
onBackStackChanged
abstract void onBackStackChanged()
Called whenever the contents of the backstack change.
-
visitedItem
abstract void visitedItem(@NonNull() T item)
Called when the backstack is moved to the item.
- Parameters:
item
- The item the backstack just moved to.
-
-
-
-