Java android.animation LayoutTransition fields, constructors, methods, implement or subclass

Example usage for Java android.animation LayoutTransition fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.animation LayoutTransition.

The text is from its open source code.

Field

intCHANGE_APPEARING
A flag indicating the animation that runs on those items that are changing due to a new item appearing in the container.
intCHANGE_DISAPPEARING
A flag indicating the animation that runs on those items that are changing due to an item disappearing from the container.
intAPPEARING
A flag indicating the animation that runs on those items that are appearing in the container.
intDISAPPEARING
A flag indicating the animation that runs on those items that are disappearing from the container.
intCHANGING
A flag indicating the animation that runs on those items that are changing due to a layout change not caused by items being added to or removed from the container.

Constructor

LayoutTransition()
Constructs a LayoutTransition object.

Method

voidenableTransitionType(int transitionType)
Enables the specified transitionType for this LayoutTransition object.
voidsetAnimator(int transitionType, Animator animator)
Sets the animation used during one of the transition types that may run.
voidsetDuration(long duration)
Sets the duration to be used by all animations of this transition object.
voidsetDuration(int transitionType, long duration)
Sets the duration on one of the animation objects used by this transition.
voidsetInterpolator(int transitionType, TimeInterpolator interpolator)
Sets the interpolator on one of the animation objects used by this transition.
voidsetStartDelay(int transitionType, long delay)
Sets the start delay on one of the animation objects used by this transition.