动画开源库

  • Nine Old Androids

其功能和android.animation.*中的类的功能完全一致,使用方法完全一样,只要我们用nineoldandroids来编写动画,就可以在所有的Android系统上运行。比较常用的几个动画类是:ValueAnimator、ObjectAnimator和AnimatorSet,其中ObjectAnimator继承自ValueAnimator,AnimatorSet是动画集,可以定义一组动画。使用起来也是及其简单的,下面举几个小栗子。
https://blog.csdn.net/singwhatiwanna/article/details/17639987
https://github.com/JakeWharton/NineOldAndroids

compile 'com.nineoldandroids:library:2.4.0'

你可能感兴趣的:(动画开源库)