Android.Animation.Animator Members

The members of Android.Animation.Animator are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
abstract
Durationlong. Gets the duration of the animation.
[read-only]
InterpolatorITimeInterpolator. Returns the timing interpolator that this animation uses.
[read-only]
IsPausedbool. Returns whether this animator is currently in a paused state.
[read-only]
abstract
IsRunningbool. Returns whether this Animator is currently running (having been started and gone past any initial startDelay period and not yet ended).
[read-only]
IsStartedbool. Returns whether this Animator has been started and not yet ended.
[read-only]
ListenersIList<Animator.IAnimatorListener>. Gets the set of NoType:android/animation/Animator$AnimatorListener;Href=../../../reference/android/animation/Animator.AnimatorListener.html objects that are currently listening for events on this Animator object.
abstract
StartDelaylong. The amount of time, in milliseconds, to delay processing the animation after Animator.Start is called.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

AddListener(Animator.IAnimatorListener)
Adds a listener to the set of listeners that are sent events through the life of an animation, such as start, repeat, and end.
AddPauseListener(Animator.IAnimatorPauseListener)
Adds a pause listener to this animator.
Cancel()
Cancels the animation.
Clone() : Animator
Creates and returns a copy of this Object.
End()
Ends the animation.
Pause()
Pauses a running animation.
RemoveAllListeners()
Removes all Animator.AddListener(.IAnimatorListener) and Animator.AddPauseListener(.IAnimatorPauseListener) from this object.
RemoveListener(Animator.IAnimatorListener)
Removes a listener from the set listening to this animation.
RemovePauseListener(Animator.IAnimatorPauseListener)
Removes a pause listener from the set listening to this animation.
Resume()
Resumes a paused animation, causing the animator to pick up where it left off when it was paused.
abstract
SetDuration(long) : Animator
Sets the duration of the animation.
abstract
SetInterpolator(ITimeInterpolator)
The time interpolator used in calculating the elapsed fraction of the animation.
SetTarget(Java.Lang.Object)
Sets the target object whose property will be animated by this animation.
SetupEndValues()
This method tells the object to use appropriate information to extract ending values for the animation.
SetupStartValues()
This method tells the object to use appropriate information to extract starting values for the animation.
Start()
Starts this animation.

Public Events

AnimationCancelDocumentation for this section has not yet been entered.
AnimationEndDocumentation for this section has not yet been entered.
AnimationPauseDocumentation for this section has not yet been entered.
AnimationRepeatDocumentation for this section has not yet been entered.
AnimationResumeDocumentation for this section has not yet been entered.
AnimationStartDocumentation for this section has not yet been entered.