AnimatorSet.ChildAnimations Property

Definition

Returns the current list of child Animator objects controlled by this AnimatorSet.

public System.Collections.Generic.IList<Android.Animation.Animator>? ChildAnimations { [Android.Runtime.Register("getChildAnimations", "()Ljava/util/ArrayList;", "")] get; }
[<get: Android.Runtime.Register("getChildAnimations", "()Ljava/util/ArrayList;", "")>]
member this.ChildAnimations : System.Collections.Generic.IList<Android.Animation.Animator>

Property Value

ArrayList<Animator> The list of child animations of this AnimatorSet.

Attributes

Remarks

Returns the current list of child Animator objects controlled by this AnimatorSet. This is a copy of the internal list; modifications to the returned list will not affect the AnimatorSet, although changes to the underlying Animator objects will affect those objects being managed by the AnimatorSet.

Java documentation for android.animation.AnimatorSet.getChildAnimations().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to