Android APIs
public class

DecelerateInterpolator

extends BaseInterpolator
implements NativeInterpolatorFactory
java.lang.Object
   ↳ android.view.animation.BaseInterpolator
     ↳ android.view.animation.DecelerateInterpolator

Class Overview

An interpolator where the rate of change starts out quickly and and then decelerates.

Summary

Public Constructors
DecelerateInterpolator()
DecelerateInterpolator(float factor)
Constructor
DecelerateInterpolator(Context context, AttributeSet attrs)
Public Methods
float getInterpolation(float input)
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.android.internal.view.animation.NativeInterpolatorFactory
From interface android.animation.TimeInterpolator

Public Constructors

public DecelerateInterpolator ()

Added in API level 1

public DecelerateInterpolator (float factor)

Added in API level 1

Constructor

Parameters
factor Degree to which the animation should be eased. Setting factor to 1.0f produces an upside-down y=x^2 parabola. Increasing factor above 1.0f makes exaggerates the ease-out effect (i.e., it starts even faster and ends evens slower)

public DecelerateInterpolator (Context context, AttributeSet attrs)

Added in API level 1

Public Methods

public float getInterpolation (float input)

Added in API level 1