added in version 26.1.0
belongs to Maven artifact com.android.support:transition:28.0.0-alpha1

TransitionListenerAdapter

public class TransitionListenerAdapter
extends Object implements Transition.TransitionListener

java.lang.Object
   ↳ android.support.transition.TransitionListenerAdapter


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

TransitionListenerAdapter()

Public methods

void onTransitionCancel(Transition transition)

Notification about the cancellation of the transition.

void onTransitionEnd(Transition transition)

Notification about the end of the transition.

void onTransitionPause(Transition transition)

Notification when a transition is paused.

void onTransitionResume(Transition transition)

Notification when a transition is resumed.

void onTransitionStart(Transition transition)

Notification about the start of the transition.

Inherited methods

From class java.lang.Object
From interface android.support.transition.Transition.TransitionListener