android动画有两大类Property Animation(api 11后) 和 View Animation
Property Animation:
res/animator/filename.xml 中,定义了对目标对象的属性在一定时间内的改变,比如background color ,arpha value
有3种element
<animator> ValueAnimator
<objectanimator> ObjectAnimator
<set> AnimationSet ,a container that holds other animation elements (animator,objectanimator,set)
View animation分Tween animation 和 Frame animation
Tween animation有 scale,translate,alpha,rotate,set,这些动画可以在xml定义,也可以直接在代码中定义
ScaleAnimation,TranslateAnim,AlphaAnimation,AnimationSet
ImageView iv = (ImageView) findViewById(R.id.iv);
Animation animation = AnimationUtils.loadAnimation(mContext, R.anim.translate);
iv.startAnimation(animation);
interpolator是Tween动画的一个熟悉,可以改变动画运行的速率:加速,减速,加减结合
Frame animation(帧动画,像电影一样,一张一张放图片) : 在xml文件中定义该类型动画 animation-list,对应AnimationDrawable
参考链接:
详解之android动画interpolator插补器 这篇文章很牛逼