AnimatorSet.PlaySequentially 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
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
- Attributes
Remarks
Sets up this AnimatorSet to play each of the supplied animations when the previous animation ends.
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.