ValueAnimator.OfObject(ITypeEvaluator, Object[]) 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.
Constructs and returns a ValueAnimator that animates between Object values.
[Android.Runtime.Register("ofObject", "(Landroid/animation/TypeEvaluator;[Ljava/lang/Object;)Landroid/animation/ValueAnimator;", "")]
public static Android.Animation.ValueAnimator? OfObject (Android.Animation.ITypeEvaluator? evaluator, params Java.Lang.Object[]? values);
[<Android.Runtime.Register("ofObject", "(Landroid/animation/TypeEvaluator;[Ljava/lang/Object;)Landroid/animation/ValueAnimator;", "")>]
static member OfObject : Android.Animation.ITypeEvaluator * Java.Lang.Object[] -> Android.Animation.ValueAnimator
Parameters
- evaluator
- ITypeEvaluator
A TypeEvaluator that will be called on each animation frame to provide the ncessry interpolation between the Object values to derive the animated value.
- values
- Object[]
A set of values that the animation will animate between over time.
Returns
A ValueAnimator object that is set up to animate between the given values.
- Attributes
Remarks
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.