Frame-to-Frame Animation 的用处之一:一个软件的背景需要随时间更换
设置interpolator的方法:
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/accelerate_decelerate_interpolator"
android:shareInterpolator="true">
在代码中:
AnimationSet animationSet=new AnimationSet(true); //true表示共享同一个interpolator
animationSet.setInterpolator(new AccelerateDecelerateInterpolator());