Skip to content

Instantly share code, notes, and snippets.

@jcdom
jcdom / ReboundInterpolator.java
Last active January 10, 2017 05:00
An interpolator where the rate of change starts out quickly, decelerates and then bounces at the end.
import android.content.Context;
import android.util.AttributeSet;
import android.view.animation.Interpolator;
/**
* An interpolator where the rate of change starts out quickly,
* decelerates and then bounces at the end.
*
* Created by jcdom on 02/04/15.
*/