AnticipateOvershootInterpolator Constructors
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
AnticipateOvershootInterpolator() | |
AnticipateOvershootInterpolator(Single) | |
AnticipateOvershootInterpolator(Context, IAttributeSet) | |
AnticipateOvershootInterpolator(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
AnticipateOvershootInterpolator(Single, Single) |
AnticipateOvershootInterpolator()
[Android.Runtime.Register(".ctor", "()V", "")]
public AnticipateOvershootInterpolator ();
- 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.
Applies to
AnticipateOvershootInterpolator(Single)
[Android.Runtime.Register(".ctor", "(F)V", "")]
public AnticipateOvershootInterpolator (float tension);
[<Android.Runtime.Register(".ctor", "(F)V", "")>]
new Android.Views.Animations.AnticipateOvershootInterpolator : single -> Android.Views.Animations.AnticipateOvershootInterpolator
Parameters
- tension
- Single
Amount of anticipation/overshoot. When tension equals 0.0f, there is no anticipation/overshoot and the interpolator becomes a simple acceleration/deceleration interpolator.
- 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.
Applies to
AnticipateOvershootInterpolator(Context, IAttributeSet)
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")]
public AnticipateOvershootInterpolator (Android.Content.Context? context, Android.Util.IAttributeSet? attrs);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")>]
new Android.Views.Animations.AnticipateOvershootInterpolator : Android.Content.Context * Android.Util.IAttributeSet -> Android.Views.Animations.AnticipateOvershootInterpolator
Parameters
- context
- Context
- attrs
- IAttributeSet
- 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.
Applies to
AnticipateOvershootInterpolator(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected AnticipateOvershootInterpolator (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Views.Animations.AnticipateOvershootInterpolator : nativeint * Android.Runtime.JniHandleOwnership -> Android.Views.Animations.AnticipateOvershootInterpolator
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
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.
Applies to
AnticipateOvershootInterpolator(Single, Single)
[Android.Runtime.Register(".ctor", "(FF)V", "")]
public AnticipateOvershootInterpolator (float tension, float extraTension);
[<Android.Runtime.Register(".ctor", "(FF)V", "")>]
new Android.Views.Animations.AnticipateOvershootInterpolator : single * single -> Android.Views.Animations.AnticipateOvershootInterpolator
Parameters
- tension
- Single
Amount of anticipation/overshoot. When tension equals 0.0f, there is no anticipation/overshoot and the interpolator becomes a simple acceleration/deceleration interpolator.
- extraTension
- Single
Amount by which to multiply the tension. For instance, to get the same overshoot as an OvershootInterpolator with a tension of 2.0f, you would use an extraTension of 1.5f.
- 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.