Animator.SetupEndValues 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.
This method tells the object to use appropriate information to extract ending values for the animation.
[Android.Runtime.Register("setupEndValues", "()V", "GetSetupEndValuesHandler")]
public virtual void SetupEndValues ();
[<Android.Runtime.Register("setupEndValues", "()V", "GetSetupEndValuesHandler")>]
abstract member SetupEndValues : unit -> unit
override this.SetupEndValues : unit -> unit
- Attributes
Remarks
This method tells the object to use appropriate information to extract ending values for the animation. For example, a AnimatorSet object will pass this call to its child objects to tell them to set up the values. A ObjectAnimator object will use the information it has about its target object and PropertyValuesHolder objects to get the start values for its properties. A ValueAnimator object will ignore the request since it does not have enough information (such as a target object) to gather these values.
Java documentation for android.animation.Animator.setupEndValues()
.
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.