AnimatorSet.PlaySequentially Method

Definition

Overloads

PlaySequentially(IList<Animator>)

Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.

PlaySequentially(Animator[])

Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.

PlaySequentially(IList<Animator>)

Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.

[Android.Runtime.Register("playSequentially", "(Ljava/util/List;)V", "")]
public void PlaySequentially (System.Collections.Generic.IList<Android.Animation.Animator>? items);
[<Android.Runtime.Register("playSequentially", "(Ljava/util/List;)V", "")>]
member this.PlaySequentially : System.Collections.Generic.IList<Android.Animation.Animator> -> unit

Parameters

items
IList<Animator>

The animations that will be started one after another.

Attributes

Remarks

Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.

Java documentation for android.animation.AnimatorSet.playSequentially(java.util.List<android.animation.Animator>).

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

PlaySequentially(Animator[])

Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.

[Android.Runtime.Register("playSequentially", "([Landroid/animation/Animator;)V", "")]
public void PlaySequentially (params Android.Animation.Animator[]? items);
[<Android.Runtime.Register("playSequentially", "([Landroid/animation/Animator;)V", "")>]
member this.PlaySequentially : Android.Animation.Animator[] -> unit

Parameters

items
Animator[]

The animations that will be started one after another.

Attributes

Remarks

Java documentation for android.animation.AnimatorSet.playSequentially(android.animation.Animator).

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