Most visited

Recently visited

Added in API level 4

AnticipateOvershootInterpolator

public class AnticipateOvershootInterpolator
extends BaseInterpolator implements NativeInterpolatorFactory

java.lang.Object
    android.view.animation.BaseInterpolator
      android.view.animation.AnticipateOvershootInterpolator


一个内插器,其中变化开始向后,然后向前闪烁并超过目标值,最后返回到最终值。

摘要(Summary)

Public constructors

AnticipateOvershootInterpolator()
AnticipateOvershootInterpolator(float tension)
AnticipateOvershootInterpolator(float tension, float extraTension)
AnticipateOvershootInterpolator(Context context, AttributeSet attrs)

公共方法(Public methods)

float getInterpolation(float t)

继承方法(Inherited methods)

From class java.lang.Object
From interface com.android.internal.view.animation.NativeInterpolatorFactory
From interface android.animation.TimeInterpolator

Public constructors

AnticipateOvershootInterpolator

Added in API level 4
AnticipateOvershootInterpolator ()

AnticipateOvershootInterpolator

Added in API level 4
AnticipateOvershootInterpolator (float tension)

参数(Parameters)
tension float: Amount of anticipation/overshoot. When tension equals 0.0f, there is no anticipation/overshoot and the interpolator becomes a simple acceleration/deceleration interpolator.

AnticipateOvershootInterpolator

Added in API level 4
AnticipateOvershootInterpolator (float tension, 
                float extraTension)

参数(Parameters)
tension float: Amount of anticipation/overshoot. When tension equals 0.0f, there is no anticipation/overshoot and the interpolator becomes a simple acceleration/deceleration interpolator.
extraTension float: 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.

AnticipateOvershootInterpolator

Added in API level 4
AnticipateOvershootInterpolator (Context context, 
                AttributeSet attrs)

参数(Parameters)
context Context
attrs AttributeSet

公共方法(Public methods)

getInterpolation

Added in API level 4
float getInterpolation (float t)

参数(Parameters)
t float
返回(Returns)
float

Hooray!