Example usage for Java android.animation LayoutTransition fields, constructors, methods, implement or subclass
The text is from its open source code.
int | CHANGE_APPEARING A flag indicating the animation that runs on those items that are changing due to a new item appearing in the container. |
int | CHANGE_DISAPPEARING A flag indicating the animation that runs on those items that are changing due to an item disappearing from the container. |
int | APPEARING A flag indicating the animation that runs on those items that are appearing in the container. |
int | DISAPPEARING A flag indicating the animation that runs on those items that are disappearing from the container. |
int | CHANGING 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. |
LayoutTransition() Constructs a LayoutTransition object. |
void | enableTransitionType(int transitionType) Enables the specified transitionType for this LayoutTransition object. |
void | setAnimator(int transitionType, Animator animator) Sets the animation used during one of the transition types that may run. |
void | setDuration(long duration) Sets the duration to be used by all animations of this transition object. |
void | setDuration(int transitionType, long duration) Sets the duration on one of the animation objects used by this transition. |
void | setInterpolator(int transitionType, TimeInterpolator interpolator) Sets the interpolator on one of the animation objects used by this transition. |
void | setStartDelay(int transitionType, long delay) Sets the start delay on one of the animation objects used by this transition. |