Most visited

Recently visited

Added in API level 4

AnticipateInterpolator

public class AnticipateInterpolator
extends BaseInterpolator implements NativeInterpolatorFactory

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


内插器,其中变化开始向后并向前闪烁。

摘要(Summary)

Public constructors

AnticipateInterpolator()
AnticipateInterpolator(float tension)
AnticipateInterpolator(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

AnticipateInterpolator

Added in API level 4
AnticipateInterpolator ()

AnticipateInterpolator

Added in API level 4
AnticipateInterpolator (float tension)

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

AnticipateInterpolator

Added in API level 4
AnticipateInterpolator (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!