AnimatorSet.PlayTogether Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
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.