Added in API level 11

LayoutTransition

open class LayoutTransition
kotlin.Any
   ↳ android.animation.LayoutTransition

This class enables automatic animations on layout changes in ViewGroup objects. To enable transitions for a layout container, create a LayoutTransition object and set it on any ViewGroup by calling ViewGroup#setLayoutTransition(LayoutTransition). This will cause default animations to run whenever items are added to or removed from that container. To specify custom animations, use the setAnimator() method.

One of the core concepts of these transition animations is that there are two types of changes that cause the transition and four different animations that run because of those changes. The changes that trigger the transition are items being added to a container (referred to as an "appearing" transition) or removed from a container (also known as "disappearing"). Setting the visibility of views (between GONE and VISIBLE) will trigger the same add/remove logic. The animations that run due to those events are one that animates items being added, one that animates items being removed, and two that animate the other items in the container that change due to the add/remove occurrence. Users of the transition may want different animations for the changing items depending on whether they are changing due to an appearing or disappearing event, so there is one animation for each of these variations of the changing event. Most of the API of this class is concerned with setting up the basic properties of the animations used in these four situations, or with setting up custom animations for any or all of the four.

By default, the DISAPPEARING animation begins immediately, as does the CHANGE_APPEARING animation. The other animations begin after a delay that is set to the default duration of the animations. This behavior facilitates a sequence of animations in transitions as follows: when an item is being added to a layout, the other children of that container will move first (thus creating space for the new item), then the appearing animation will run to animate the item being added. Conversely, when an item is removed from a container, the animation to remove it will run first, then the animations of the other children in the layout will run (closing the gap created in the layout when the item was removed). If this default choreography behavior is not desired, the setDuration(int,long) and setStartDelay(int,long) of any or all of the animations can be changed as appropriate. Keep in mind, however, that if you start an APPEARING animation before a DISAPPEARING animation is completed, the DISAPPEARING animation stops, and any effects from the DISAPPEARING animation are reverted. If you instead start a DISAPPEARING animation before an APPEARING animation is completed, a similar set of effects occurs for the APPEARING animation.

The animations specified for the transition, both the defaults and any custom animations set on the transition object, are templates only. That is, these animations exist to hold the basic animation properties, such as the duration, start delay, and properties being animated. But the actual target object, as well as the start and end values for those properties, are set automatically in the process of setting up the transition each time it runs. Each of the animations is cloned from the original copy and the clone is then populated with the dynamic values of the target being animated (such as one of the items in a layout container that is moving as a result of the layout event) as well as the values that are changing (such as the position and size of that object). The actual values that are pushed to each animation depends on what properties are specified for the animation. For example, the default CHANGE_APPEARING animation animates the left, top, right, bottom, scrollX, and scrollY properties. Values for these properties are updated with the pre- and post-layout values when the transition begins. Custom animations will be similarly populated with the target and values being animated, assuming they use ObjectAnimator objects with property names that are known on the target object.

This class, and the associated XML flag for containers, animateLayoutChanges="true", provides a simple utility meant for automating changes in straightforward situations. Using LayoutTransition at multiple levels of a nested view hierarchy may not work due to the interrelationship of the various levels of layout. Also, a container that is being scrolled at the same time as items are being added or removed is probably not a good candidate for this utility, because the before/after locations calculated by LayoutTransition may not match the actual locations when the animations finish due to the container being scrolled as the animations are running. You can work around that particular issue by disabling the 'changing' animations by setting the CHANGE_APPEARING and CHANGE_DISAPPEARING animations to null, and setting the startDelay of the other animations appropriately.

Summary

Nested classes
abstract

This interface is used for listening to starting and ending events for transitions.

Constants
static Int

A flag indicating the animation that runs on those items that are appearing in the container.

static Int

A flag indicating the animation that runs on those items that are changing due to a new item appearing in the container.

static Int

A flag indicating the animation that runs on those items that are changing due to an item disappearing from the container.

static Int

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.

static Int

A flag indicating the animation that runs on those items that are disappearing from the container.

Public constructors

Constructs a LayoutTransition object.

Public methods
open Unit
addChild(parent: ViewGroup!, child: View!)

This method is called by ViewGroup when a child view is about to be added to the container.

open Unit

Add a listener that will be called when the bounds of the view change due to layout processing.

open Unit
disableTransitionType(transitionType: Int)

Disables the specified transitionType for this LayoutTransition object.

open Unit
enableTransitionType(transitionType: Int)

Enables the specified transitionType for this LayoutTransition object.

open Animator!
getAnimator(transitionType: Int)

Gets the animation used during one of the transition types that may run.

open Long
getDuration(transitionType: Int)

Gets the duration on one of the animation objects used by this transition.

open TimeInterpolator!
getInterpolator(transitionType: Int)

Gets the interpolator on one of the animation objects used by this transition.

open Long
getStagger(transitionType: Int)

Gets the length of time to delay between starting each animation during one of the change animations.

open Long
getStartDelay(transitionType: Int)

Gets the start delay on one of the animation objects used by this transition.

open MutableList<LayoutTransition.TransitionListener!>!

Gets the current list of listeners for layout changes.

open Unit
hideChild(parent: ViewGroup!, child: View!)

open Unit
hideChild(parent: ViewGroup!, child: View!, newVisibility: Int)

This method is called by ViewGroup when a child view is about to be hidden in container.

open Boolean

Returns true if animations are running which animate layout-related properties.

open Boolean

Returns true if any of the animations in this transition are currently running.

open Boolean
isTransitionTypeEnabled(transitionType: Int)

Returns whether the specified transitionType is enabled for this LayoutTransition object.

open Unit
removeChild(parent: ViewGroup!, child: View!)

This method is called by ViewGroup when a child view is about to be removed from the container.

open Unit

Remove a listener for layout changes.

open Unit
setAnimateParentHierarchy(animateParentHierarchy: Boolean)

This flag controls whether CHANGE_APPEARING or CHANGE_DISAPPEARING animations will cause the default changing animation to be run on the parent hierarchy as well.

open Unit
setAnimator(transitionType: Int, animator: Animator!)

Sets the animation used during one of the transition types that may run.

open Unit
setDuration(duration: Long)

Sets the duration to be used by all animations of this transition object.

open Unit
setDuration(transitionType: Int, duration: Long)

Sets the duration on one of the animation objects used by this transition.

open Unit
setInterpolator(transitionType: Int, interpolator: TimeInterpolator!)

Sets the interpolator on one of the animation objects used by this transition.

open Unit
setStagger(transitionType: Int, duration: Long)

Sets the length of time to delay between starting each animation during one of the change animations.

open Unit
setStartDelay(transitionType: Int, delay: Long)

Sets the start delay on one of the animation objects used by this transition.

open Unit
showChild(parent: ViewGroup!, child: View!)

open Unit
showChild(parent: ViewGroup!, child: View!, oldVisibility: Int)

This method is called by ViewGroup when a child view is about to be made visible in the container.

Constants

APPEARING

Added in API level 11
static val APPEARING: Int

A flag indicating the animation that runs on those items that are appearing in the container.

Value: 2

CHANGE_APPEARING

Added in API level 11
static val CHANGE_APPEARING: Int

A flag indicating the animation that runs on those items that are changing due to a new item appearing in the container.

Value: 0

CHANGE_DISAPPEARING

Added in API level 11
static val CHANGE_DISAPPEARING: Int

A flag indicating the animation that runs on those items that are changing due to an item disappearing from the container.

Value: 1

CHANGING

Added in API level 16
static val CHANGING: Int

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. This transition type is not enabled by default; it can be enabled via enableTransitionType(int).

Value: 4

DISAPPEARING

Added in API level 11
static val DISAPPEARING: Int

A flag indicating the animation that runs on those items that are disappearing from the container.

Value: 3

Public constructors

LayoutTransition

Added in API level 11
LayoutTransition()

Constructs a LayoutTransition object. By default, the object will listen to layout events on any ViewGroup that it is set on and will run default animations for each type of layout event.

Public methods

addChild

Added in API level 11
open fun addChild(
    parent: ViewGroup!,
    child: View!
): Unit

This method is called by ViewGroup when a child view is about to be added to the container. This callback starts the process of a transition; we grab the starting values, listen for changes to all of the children of the container, and start appropriate animations.

Parameters
parent ViewGroup!: The ViewGroup to which the View is being added.
child View!: The View being added to the ViewGroup.

addTransitionListener

Added in API level 11
open fun addTransitionListener(listener: LayoutTransition.TransitionListener!): Unit

Add a listener that will be called when the bounds of the view change due to layout processing.

Parameters
listener LayoutTransition.TransitionListener!: The listener that will be called when layout bounds change.

disableTransitionType

Added in API level 16
open fun disableTransitionType(transitionType: Int): Unit

Disables the specified transitionType for this LayoutTransition object. By default, all transition types except CHANGING are enabled.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING.

enableTransitionType

Added in API level 16
open fun enableTransitionType(transitionType: Int): Unit

Enables the specified transitionType for this LayoutTransition object. By default, a LayoutTransition listens for changes in children being added/remove/hidden/shown in the container, and runs the animations associated with those events. That is, all transition types besides CHANGING are enabled by default. You can also enable CHANGING animations by calling this method with the CHANGING transitionType.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING.

getAnimator

Added in API level 11
open fun getAnimator(transitionType: Int): Animator!

Gets the animation used during one of the transition types that may run.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose animator is being returned.
Return
Animator! Animator The animation being used for the given transition type.

getDuration

Added in API level 11
open fun getDuration(transitionType: Int): Long

Gets the duration on one of the animation objects used by this transition. The transitionType parameter determines the animation whose duration is returned.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose duration is returned.
Return
Long long The duration of the specified animation.

getInterpolator

Added in API level 11
open fun getInterpolator(transitionType: Int): TimeInterpolator!

Gets the interpolator on one of the animation objects used by this transition. The transitionType parameter determines the animation whose interpolator is returned.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose interpolator is being returned.
Return
TimeInterpolator! TimeInterpolator The interpolator that the specified animation uses.

getStagger

Added in API level 11
open fun getStagger(transitionType: Int): Long

Gets the length of time to delay between starting each animation during one of the change animations.

Parameters
transitionType Int: A value of CHANGE_APPEARING, CHANGE_DISAPPEARING, or CHANGING.
Return
Long long The length of time, in milliseconds, to delay before launching the next animation in the sequence.

getStartDelay

Added in API level 11
open fun getStartDelay(transitionType: Int): Long

Gets the start delay on one of the animation objects used by this transition. The transitionType parameter determines the animation whose start delay is returned.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose start delay is returned.
Return
Long long The start delay of the specified animation.

getTransitionListeners

Added in API level 11
open fun getTransitionListeners(): MutableList<LayoutTransition.TransitionListener!>!

Gets the current list of listeners for layout changes.

Return
MutableList<LayoutTransition.TransitionListener!>!

hideChild

Added in API level 11
Deprecated in API level 16
open fun hideChild(
    parent: ViewGroup!,
    child: View!
): Unit

Deprecated: Use hideChild(android.view.ViewGroup,android.view.View,int).

hideChild

Added in API level 16
open fun hideChild(
    parent: ViewGroup!,
    child: View!,
    newVisibility: Int
): Unit

This method is called by ViewGroup when a child view is about to be hidden in container. This callback starts the process of a transition; we grab the starting values, listen for changes to all of the children of the container, and start appropriate animations.

Parameters
parent ViewGroup!: The parent ViewGroup of the View being hidden.
child View!: The View being hidden.
newVisibility Int: The new visibility value of the child View, either View#GONE or View#INVISIBLE.

isChangingLayout

Added in API level 11
open fun isChangingLayout(): Boolean

Returns true if animations are running which animate layout-related properties. This essentially means that either CHANGE_APPEARING or CHANGE_DISAPPEARING animations are running, since these animations operate on layout-related properties.

Return
Boolean true if CHANGE_APPEARING or CHANGE_DISAPPEARING animations are currently running.

isRunning

Added in API level 11
open fun isRunning(): Boolean

Returns true if any of the animations in this transition are currently running.

Return
Boolean true if any animations in the transition are running.

isTransitionTypeEnabled

Added in API level 16
open fun isTransitionTypeEnabled(transitionType: Int): Boolean

Returns whether the specified transitionType is enabled for this LayoutTransition object. By default, all transition types except CHANGING are enabled.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING.
Return
Boolean true if the specified transitionType is currently enabled, false otherwise.

removeChild

Added in API level 11
open fun removeChild(
    parent: ViewGroup!,
    child: View!
): Unit

This method is called by ViewGroup when a child view is about to be removed from the container. This callback starts the process of a transition; we grab the starting values, listen for changes to all of the children of the container, and start appropriate animations.

Parameters
parent ViewGroup!: The ViewGroup from which the View is being removed.
child View!: The View being removed from the ViewGroup.

removeTransitionListener

Added in API level 11
open fun removeTransitionListener(listener: LayoutTransition.TransitionListener!): Unit

Remove a listener for layout changes.

Parameters
listener LayoutTransition.TransitionListener!: The listener for layout bounds change.

setAnimateParentHierarchy

Added in API level 14
open fun setAnimateParentHierarchy(animateParentHierarchy: Boolean): Unit

This flag controls whether CHANGE_APPEARING or CHANGE_DISAPPEARING animations will cause the default changing animation to be run on the parent hierarchy as well. This allows containers of transitioning views to also transition, which may be necessary in situations where the containers bounds change between the before/after states and may clip their children during the transition animations. For example, layouts with wrap_content will adjust their bounds according to the dimensions of their children.

The default changing transitions animate the bounds and scroll positions of the target views. These are the animations that will run on the parent hierarchy, not the custom animations that happen to be set on the transition. This allows custom behavior for the children of the transitioning container, but uses standard behavior of resizing/rescrolling on any changing parents.

Parameters
animateParentHierarchy Boolean: A boolean value indicating whether the parents of transitioning views should also be animated during the transition. Default value is true.

setAnimator

Added in API level 11
open fun setAnimator(
    transitionType: Int,
    animator: Animator!
): Unit

Sets the animation used during one of the transition types that may run. Any Animator object can be used, but to be most useful in the context of layout transitions, the animation should either be a ObjectAnimator or a AnimatorSet of animations including PropertyAnimators. Also, these ObjectAnimator objects should be able to get and set values on their target objects automatically. For example, a ObjectAnimator that animates the property "left" is able to set and get the left property from the View objects being animated by the layout transition. The transition works by setting target objects and properties dynamically, according to the pre- and post-layoout values of those objects, so having animations that can handle those properties appropriately will work best for custom animation. The dynamic setting of values is only the case for the CHANGE animations; the APPEARING and DISAPPEARING animations are simply run with the values they have.

It is also worth noting that any and all animations (and their underlying PropertyValuesHolder objects) will have their start and end values set according to the pre- and post-layout values. So, for example, a custom animation on "alpha" as the CHANGE_APPEARING animation will inherit the real value of alpha on the target object (presumably 1) as its starting and ending value when the animation begins. Animations which need to use values at the beginning and end that may not match the values queried when the transition begins may need to use a different mechanism than a standard ObjectAnimator object.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose animator is being set.
animator Animator!: The animation being assigned. A value of null means that no animation will be run for the specified transitionType.

setDuration

Added in API level 11
open fun setDuration(duration: Long): Unit

Sets the duration to be used by all animations of this transition object. If you want to set the duration of just one of the animations in particular, use the setDuration(int,long) method.

Parameters
duration Long: The length of time, in milliseconds, that the transition animations should last.

setDuration

Added in API level 11
open fun setDuration(
    transitionType: Int,
    duration: Long
): Unit

Sets the duration on one of the animation objects used by this transition. The transitionType parameter determines the animation whose duration is being set.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose duration is being set.
duration Long: The length of time, in milliseconds, that the specified animation should run.

setInterpolator

Added in API level 11
open fun setInterpolator(
    transitionType: Int,
    interpolator: TimeInterpolator!
): Unit

Sets the interpolator on one of the animation objects used by this transition. The transitionType parameter determines the animation whose interpolator is being set.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose interpolator is being set.
interpolator TimeInterpolator!: The interpolator that the specified animation should use.

setStagger

Added in API level 11
open fun setStagger(
    transitionType: Int,
    duration: Long
): Unit

Sets the length of time to delay between starting each animation during one of the change animations.

Parameters
transitionType Int: A value of CHANGE_APPEARING, CHANGE_DISAPPEARING, or CHANGING.
duration Long: The length of time, in milliseconds, to delay before launching the next animation in the sequence.

setStartDelay

Added in API level 11
open fun setStartDelay(
    transitionType: Int,
    delay: Long
): Unit

Sets the start delay on one of the animation objects used by this transition. The transitionType parameter determines the animation whose start delay is being set.

Parameters
transitionType Int: One of CHANGE_APPEARING, CHANGE_DISAPPEARING, CHANGING, APPEARING, or DISAPPEARING, which determines the animation whose start delay is being set.
delay Long: The length of time, in milliseconds, to delay before starting the animation.

showChild

Added in API level 11
Deprecated in API level 16
open fun showChild(
    parent: ViewGroup!,
    child: View!
): Unit

Deprecated: Use showChild(android.view.ViewGroup,android.view.View,int).

showChild

Added in API level 16
open fun showChild(
    parent: ViewGroup!,
    child: View!,
    oldVisibility: Int
): Unit

This method is called by ViewGroup when a child view is about to be made visible in the container. This callback starts the process of a transition; we grab the starting values, listen for changes to all of the children of the container, and start appropriate animations.

Parameters
parent ViewGroup!: The ViewGroup in which the View is being made visible.
child View!: The View being made visible.
oldVisibility Int: The previous visibility value of the child View, either View#GONE or View#INVISIBLE.