R.interpolator


public static final class R.interpolator
extends Object

java.lang.Object
   ↳ android.R.interpolator


Summary

Constants

int accelerate_cubic

Acceleration curve matching a cubic ease out function.

int accelerate_decelerate

Acceleration curve matching an ease in + ease out function

int accelerate_quad

Acceleration curve matching a quadtratic ease out function.

int accelerate_quint

Acceleration curve matching a quint ease out function.

int anticipate

An interpolator where the change starts backward then flings forward.

int anticipate_overshoot

An interpolator where the change starts backward then flings forward and overshoots the target value and finally goes back to the final value.

int bounce

An interpolator where the change bounces at the end.

int cycle

Repeats the animation for one cycle.

int decelerate_cubic

Acceleration curve matching a cubic ease in function.

int decelerate_quad

Acceleration curve matching a quadtratic ease in function.

int decelerate_quint

Acceleration curve matching a quint ease in function.

int fast_out_extra_slow_in

An interpolator which accelerates fast but decelerates extra slowly.

int fast_out_linear_in

An interpolator which accelerates fast and keeps accelerating until the end.

int fast_out_slow_in

An interpolator which accelerates fast but decelerates slowly.

int linear

An interpolator where the rate of change is constant.

int linear_out_slow_in

An interpolator which starts with a peak non-zero velocity and decelerates slowly.

int overshoot

An interpolator where the change flings forward and overshoots the last value then comes back.

Public constructors

interpolator()

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Constants

accelerate_cubic

Added in API level 11
public static final int accelerate_cubic

Acceleration curve matching a cubic ease out function.

Constant Value: 17563650 (0x010c0002)

accelerate_decelerate

Added in API level 11
public static final int accelerate_decelerate

Acceleration curve matching an ease in + ease out function

Constant Value: 17563654 (0x010c0006)

accelerate_quad

Added in API level 11
public static final int accelerate_quad

Acceleration curve matching a quadtratic ease out function.

Constant Value: 17563648 (0x010c0000)

accelerate_quint

Added in API level 11
public static final int accelerate_quint

Acceleration curve matching a quint ease out function.

Constant Value: 17563652 (0x010c0004)

anticipate

Added in API level 11
public static final int anticipate

An interpolator where the change starts backward then flings forward.

Constant Value: 17563655 (0x010c0007)

anticipate_overshoot

Added in API level 11
public static final int anticipate_overshoot

An interpolator where the change starts backward then flings forward and overshoots the target value and finally goes back to the final value.

Constant Value: 17563657 (0x010c0009)

bounce

Added in API level 11
public static final int bounce

An interpolator where the change bounces at the end.

Constant Value: 17563658 (0x010c000a)

cycle

Added in API level 11
public static final int cycle

Repeats the animation for one cycle. The rate of change follows a sinusoidal pattern.

Constant Value: 17563660 (0x010c000c)

decelerate_cubic

Added in API level 11
public static final int decelerate_cubic

Acceleration curve matching a cubic ease in function.

Constant Value: 17563651 (0x010c0003)

decelerate_quad

Added in API level 11
public static final int decelerate_quad

Acceleration curve matching a quadtratic ease in function.

Constant Value: 17563649 (0x010c0001)

decelerate_quint

Added in API level 11
public static final int decelerate_quint

Acceleration curve matching a quint ease in function.

Constant Value: 17563653 (0x010c0005)

fast_out_extra_slow_in

Added in API level 28
public static final int fast_out_extra_slow_in

An interpolator which accelerates fast but decelerates extra slowly.

Constant Value: 17563674 (0x010c001a)

fast_out_linear_in

Added in API level 21
public static final int fast_out_linear_in

An interpolator which accelerates fast and keeps accelerating until the end.

Constant Value: 17563663 (0x010c000f)

fast_out_slow_in

Added in API level 21
public static final int fast_out_slow_in

An interpolator which accelerates fast but decelerates slowly.

Constant Value: 17563661 (0x010c000d)

linear

Added in API level 11
public static final int linear

An interpolator where the rate of change is constant.

Constant Value: 17563659 (0x010c000b)

linear_out_slow_in

Added in API level 21
public static final int linear_out_slow_in

An interpolator which starts with a peak non-zero velocity and decelerates slowly.

Constant Value: 17563662 (0x010c000e)

overshoot

Added in API level 11
public static final int overshoot

An interpolator where the change flings forward and overshoots the last value then comes back.

Constant Value: 17563656 (0x010c0008)

Public constructors

interpolator

public interpolator ()