AnimatorSet.PlayTogether Method

Definition

Overloads

PlayTogether(Animator[])

Sets up this AnimatorSet to play all of the supplied animations at the same time.

PlayTogether(ICollection<Animator>)

Sets up this AnimatorSet to play all of the supplied animations at the same time.

PlayTogether(Animator[])

Sets up this AnimatorSet to play all of the supplied animations at the same time.

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

Parameters

items
Animator[]

The animations that will be started simultaneously.

Attributes

Remarks

Java documentation for android.animation.AnimatorSet.playTogether(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

PlayTogether(ICollection<Animator>)

Sets up this AnimatorSet to play all of the supplied animations at the same time.

[Android.Runtime.Register("playTogether", "(Ljava/util/Collection;)V", "")]
public void PlayTogether (System.Collections.Generic.ICollection<Android.Animation.Animator>? items);
[<Android.Runtime.Register("playTogether", "(Ljava/util/Collection;)V", "")>]
member this.PlayTogether : System.Collections.Generic.ICollection<Android.Animation.Animator> -> unit

Parameters

items
ICollection<Animator>

The animations that will be started simultaneously.

Attributes

Remarks

Sets up this AnimatorSet to play all of the supplied animations at the same time.

Java documentation for android.animation.AnimatorSet.playTogether(java.util.Collection<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