public static interface ControllerChangeHandler.ControllerChangeListener
| Modifier and Type | Method and Description |
|---|---|
void |
onChangeCompleted(Controller to,
Controller from,
boolean isPush,
android.view.ViewGroup container,
ControllerChangeHandler handler)
Called when a
ControllerChangeHandler has completed changing Controllers |
void |
onChangeStarted(Controller to,
Controller from,
boolean isPush,
android.view.ViewGroup container,
ControllerChangeHandler handler)
Called when a
ControllerChangeHandler has started changing Controllers |
void onChangeStarted(Controller to, Controller from, boolean isPush, android.view.ViewGroup container, ControllerChangeHandler handler)
ControllerChangeHandler has started changing Controllersto - The new Controller or null if no Controller is being transitioned tofrom - The old Controller or null if there was no Controller before this transitionisPush - True if this is a push operation, or false if it's a pop.container - The containing ViewGrouphandler - The change handler being used.void onChangeCompleted(Controller to, Controller from, boolean isPush, android.view.ViewGroup container, ControllerChangeHandler handler)
ControllerChangeHandler has completed changing Controllersto - The new Controller or null if no Controller is being transitioned tofrom - The old Controller or null if there was no Controller before this transitionisPush - True if this was a push operation, or false if it's a popcontainer - The containing ViewGrouphandler - The change handler that was used.