Back to project page DragHelperView.
The source code is released under:
Apache License
If you think the Android project DragHelperView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package so.library.draghelper.helper.interpolator; //from w w w .j a v a2s . co m import android.view.animation.LinearInterpolator; /** * Created by minkyu on 2015. 1. 20.. */ public class SmoothInterpolator extends LinearInterpolator { @Override public float getInterpolation(float input){ return (float) Math.pow(input - 1, 5) + 1; } }