TransitionListenerAdapter
public class TransitionListenerAdapter implements Transition.TransitionListener
This adapter class provides empty implementations of the methods from Transition.TransitionListener. Any custom listener that cares only about a subset of the methods of this listener can simply subclass this adapter class instead of implementing the interface directly.
Summary
Public constructors |
|---|
Public methods |
|
|---|---|
void |
onTransitionCancel(@NonNull Transition transition)Notification about the cancellation of the transition. |
void |
onTransitionEnd(@NonNull Transition transition)Notification about the end of the transition. |
void |
onTransitionPause(@NonNull Transition transition)Notification when a transition is paused. |
void |
onTransitionResume(@NonNull Transition transition)Notification when a transition is resumed. |
void |
onTransitionStart(@NonNull Transition transition)Notification about the start of the transition. |
Inherited methods |
||||
|---|---|---|---|---|
|
Public constructors
Public methods
onTransitionCancel
public void onTransitionCancel(@NonNull Transition transition)
Notification about the cancellation of the transition. Note that cancel may be called by a parent TransitionSet on a child transition which has not yet started. This allows the child transition to restore state on target objects which was set at createAnimator() time.
| Parameters | |
|---|---|
@NonNull Transition transition |
The transition which was canceled. |
onTransitionEnd
public void onTransitionEnd(@NonNull Transition transition)
Notification about the end of the transition. Canceled transitions will always notify listeners of both the cancellation and end events. That is, onTransitionEnd is always called, regardless of whether the transition was canceled or played through to completion.
| Parameters | |
|---|---|
@NonNull Transition transition |
The transition which reached its end. |
onTransitionPause
public void onTransitionPause(@NonNull Transition transition)
Notification when a transition is paused. Note that createAnimator() may be called by a parent TransitionSet on a child transition which has not yet started. This allows the child transition to restore state on target objects which was set at createAnimator() time.
| Parameters | |
|---|---|
@NonNull Transition transition |
The transition which was paused. |
onTransitionResume
public void onTransitionResume(@NonNull Transition transition)
Notification when a transition is resumed. Note that resume() may be called by a parent TransitionSet on a child transition which has not yet started. This allows the child transition to restore state which may have changed in an earlier call to onTransitionPause.
| Parameters | |
|---|---|
@NonNull Transition transition |
The transition which was resumed. |
onTransitionStart
public void onTransitionStart(@NonNull Transition transition)
Notification about the start of the transition.
| Parameters | |
|---|---|
@NonNull Transition transition |
The started transition. |