Most visited

Recently visited

Added in API level 11

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_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

R.interpolator()

Inherited methods

From class java.lang.Object

Constants

accelerate_cubic

Added in API level 11
int accelerate_cubic

Acceleration curve matching a cubic ease out function.

Constant Value: 17563650 (0x010c0002)

accelerate_decelerate

Added in API level 11
int accelerate_decelerate

Acceleration curve matching an ease in + ease out function

Constant Value: 17563654 (0x010c0006)

accelerate_quad

Added in API level 11
int accelerate_quad

Acceleration curve matching a quadtratic ease out function.

Constant Value: 17563648 (0x010c0000)

accelerate_quint

Added in API level 11
int accelerate_quint

Acceleration curve matching a quint ease out function.

Constant Value: 17563652 (0x010c0004)

anticipate

Added in API level 11
int anticipate

An interpolator where the change starts backward then flings forward.

Constant Value: 17563655 (0x010c0007)

anticipate_overshoot

Added in API level 11
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
int bounce

An interpolator where the change bounces at the end.

Constant Value: 17563658 (0x010c000a)

cycle

Added in API level 11
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
int decelerate_cubic

Acceleration curve matching a cubic ease in function.

Constant Value: 17563651 (0x010c0003)

decelerate_quad

Added in API level 11
int decelerate_quad

Acceleration curve matching a quadtratic ease in function.

Constant Value: 17563649 (0x010c0001)

decelerate_quint

Added in API level 11
int decelerate_quint

Acceleration curve matching a quint ease in function.

Constant Value: 17563653 (0x010c0005)

fast_out_linear_in

Added in API level 21
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
int fast_out_slow_in

An interpolator which accelerates fast but decelerates slowly.

Constant Value: 17563661 (0x010c000d)

linear

Added in API level 11
int linear

An interpolator where the rate of change is constant.

Constant Value: 17563659 (0x010c000b)

linear_out_slow_in

Added in API level 21
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
int overshoot

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

Constant Value: 17563656 (0x010c0008)

Public constructors

R.interpolator

Added in API level 11
R.interpolator ()

Hooray!