android.animation.LayoutTransition.TransitionListener |
This interface is used for listening to starting and ending events for transitions.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
This event is sent to listeners when any type of transition animation ends.
| |||||||||||
This event is sent to listeners when any type of transition animation begins.
|
This event is sent to listeners when any type of transition animation ends.
transition | The LayoutTransition sending out the event. |
---|---|
container | The ViewGroup on which the transition is playing. |
view | The View object being affected by the transition animation. |
transitionType | The type of transition that is ending,
APPEARING ,
DISAPPEARING ,
CHANGE_APPEARING , or
CHANGE_DISAPPEARING .
|
This event is sent to listeners when any type of transition animation begins.
transition | The LayoutTransition sending out the event. |
---|---|
container | The ViewGroup on which the transition is playing. |
view | The View object being affected by the transition animation. |
transitionType | The type of transition that is beginning,
APPEARING ,
DISAPPEARING ,
CHANGE_APPEARING , or
CHANGE_DISAPPEARING .
|