Android Easing Functions
This project is originally from my another project, AndroidViewAnimation, which is an animation collection, to help you make animation easier.
While, I was still unsatisfied with the animation effect.
So, I started to explore how to make it more and more real.
I found the Easing Functions made by Robert Penne, then, I implemented Easing Functions and make a lovely demo.
Demo
Usage
NineOldAndroids
has been removed since version 2.0. Thanks Jake Wharton.
minSdkVersion: 11
Step 1
Gradle
or maven
Step 2
Just like a glider.
Tips
If you encounter exceptions such as ClassNotFoundExceptions
(#4), please add the following to your proguard-project.txt
:
-keep class com.daimajia.easing.** { *; }
-keep interface com.daimajia.easing.** { *; }