Animator.IsStarted Property
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.
Returns whether this Animator has been started and not yet ended.
public virtual bool IsStarted { [Android.Runtime.Register("isStarted", "()Z", "GetIsStartedHandler")] get; }
[<get: Android.Runtime.Register("isStarted", "()Z", "GetIsStartedHandler")>]
member this.IsStarted : bool
Property Value
Whether the Animator has been started and not yet ended.
- Attributes
Remarks
Returns whether this Animator has been started and not yet ended. For reusable Animators (which most Animators are, apart from the one-shot animator produced by android.view.ViewAnimationUtils#createCircularReveal( android.view.View, int, int, float, float) createCircularReveal()
), this state is a superset of #isRunning()
, because an Animator with a nonzero #getStartDelay() startDelay
will return true for #isStarted()
during the delay phase, whereas #isRunning()
will return true only after the delay phase is complete. Non-reusable animators will always return true after they have been started, because they cannot return to a non-started state.
Java documentation for android.animation.Animator.isStarted()
.
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.