找了好多关于android动画的文章,感觉这一篇文章写得真心好,特地收藏一下!
3.0以前,android支持两种动画模式,tween animation,frame animation,在android3.0中又引入了一个新的动画系统:property animation,这三种动画模式在SDK中被称为property animation,view animation,drawable animation。 可通过NineOldAndroids项目在3.0之前的系统中使用Property Animation
View Animation(Tween Animation):补间动画,给出两个关键帧,通过一些算法将给定属性值在给定的时间内在两个关键帧间渐变。
View animation只能应用于View对象,而且只支持一部分属性,如支持缩放旋转而不支持背景颜色的改变。
而且对于View animation,它只是改变了View对象绘制的位置,而没有改变View对象本身,比如,你有一个Button,坐标(100,100),Width:200,Height:50,而你有一个动画使其变为Width:100,Height:100,你会发现动画过程中触发按钮点击的区域仍是(100,100)-(300,150)。
View Animation就是一系列View形状的变换,如大小的缩放,透明度的改变,位置的改变,动画的定义既可以用代码定义也可以用XML定义,当然,建议用XML定义。
可以给一个View同时设置多个动画,比如从透明至不透明的淡入效果,与从小到大的放大效果,这些动画可以同时进行,也可以在一个完成之后开始另一个。
用XML定义的动画放在/res/anim/文件夹内,XML文件的根元素可以为
可以通过设置interpolator属性改变动画渐变的方式,如AccelerateInterpolator,开始时慢,然后逐渐加快。默认为AccelerateDecelerateInterpolator。
定义好动画的XML文件后,可以通过类似下面的代码对指定View应用动画。
ImageView spaceshipImage = (ImageView)findViewById(R.id.spaceshipImage);
Animation hyperspaceJumpAnimation=AnimationUtils.loadAnimation(this, R.anim.hyperspace_jump);
spaceshipImage.startAnimation(hyperspaceJumpAnimation);
Drawable Animation(Frame Animation):帧动画,就像GIF图片,通过一系列Drawable依次显示来模拟动画的效果。在XML中的定义方式如下:
<animation-list xmlns:android&#61;"http://schemas.android.com/apk/res/android"android:oneshot&#61;"true"><item android:drawable&#61;"&#64;drawable/rocket_thrust1" android:duration&#61;"200" /><item android:drawable&#61;"&#64;drawable/rocket_thrust2" android:duration&#61;"200" /><item android:drawable&#61;"&#64;drawable/rocket_thrust3" android:duration&#61;"200" />
animation-list>
必须以
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
imageView &#61; (ImageView) findViewById(R.id.imageView1);
imageView.setBackgroundResource(R.drawable.drawable_anim);
anim &#61; (AnimationDrawable) imageView.getBackground();
}
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() &#61;&#61; MotionEvent.ACTION_DOWN) {
anim.stop();
anim.start();
return true;
}
return super.onTouchEvent(event);
}
我在实验中遇到两点问题&#xff1a;
属性动画&#xff0c;这个是在Android 3.0中才引进的&#xff0c;以前学WPF时里面的动画机制好像就是这个&#xff0c;它更改的是对象的实际属性&#xff0c;在View Animation&#xff08;Tween Animation&#xff09;中&#xff0c;其改变的是View的绘制效果&#xff0c;真正的View的属性保持不变&#xff0c;比如无论你在对话中如何缩放Button的大小&#xff0c;Button的有效点击区域还是没有应用动画时的区域&#xff0c;其位置与大小都不变。而在Property Animation中&#xff0c;改变的是对象的实际属性&#xff0c;如Button的缩放&#xff0c;Button的位置与大小属性值都改变了。而且Property Animation不止可以应用于View&#xff0c;还可以应用于任何对象。Property Animation只是表示一个值在一段时间内的改变&#xff0c;当值改变时要做什么事情完全是你自己决定的。
在Property Animation中&#xff0c;可以对动画应用以下属性&#xff1a;
对于下图的动画&#xff0c;这个对象的X坐标在40ms内从0移动到40 pixel.按默认的10ms刷新一次&#xff0c;这个对象会移动4次&#xff0c;每次移动40/4&#61;10pixel。
也可以改变属性值的改变方法&#xff0c;即设置不同的interpolation&#xff0c;在下图中运动速度先逐渐增大再逐渐减小
下图显示了与上述动画相关的关键对象
ValueAnimator 表示一个动画&#xff0c;包含动画的开始值&#xff0c;结束值&#xff0c;持续时间等属性。
ValueAnimator封装了一个TimeInterpolator&#xff0c;TimeInterpolator定义了属性值在开始值与结束值之间的插值方法。
ValueAnimator还封装了一个TypeAnimator&#xff0c;根据开始、结束值与TimeIniterpolator计算得到的值计算出属性值。
ValueAnimator根据动画已进行的时间跟动画总时间&#xff08;duration&#xff09;的比计算出一个时间因子&#xff08;0~1&#xff09;&#xff0c;然后根据TimeInterpolator计算出另一个因子&#xff0c;最后TypeAnimator通过这个因子计算出属性值&#xff0c;如上例中10ms时&#xff1a;
首先计算出时间因子&#xff0c;即经过的时间百分比&#xff1a;t&#61;10ms/40ms&#61;0.25
经插值计算(inteplator)后的插值因子:大约为0.15&#xff0c;上述例子中用了AccelerateDecelerateInterpolator&#xff0c;计算公式为&#xff08;input即为时间因子&#xff09;&#xff1a;
(Math.cos((input &#43; 1) * Math.PI) / 2.0f) &#43; 0.5f;
最后根据TypeEvaluator计算出在10ms时的属性值&#xff1a;0.15*&#xff08;40-0&#xff09;&#61;6pixel。上例中TypeEvaluator为FloatEvaluator&#xff0c;计算方法为 &#xff1a;
public Float evaluate(float fraction, Number startValue, Number endValue) {float startFloat &#61; startValue.floatValue();return startFloat &#43; fraction * (endValue.floatValue() - startFloat);
}
参数分别为上一步的插值因子&#xff0c;开始值与结束值。
ValueAnimator包含Property Animation动画的所有核心功能&#xff0c;如动画时间&#xff0c;开始、结束属性值&#xff0c;相应时间属性值计算方法等。应用Property Animation有两个步聚&#xff1a;
ValuAnimiator只完成了第一步工作&#xff0c;如果要完成第二步&#xff0c;需要实现ValueAnimator.onUpdateListener接口&#xff0c;这个接口只有一个函数onAnimationUpdate()&#xff0c;在这个函数中会传入ValueAnimator对象做为参数&#xff0c;通过这个ValueAnimator对象的getAnimatedValue()函数可以得到当前的属性值如&#xff1a;
ValueAnimator animation &#61; ValueAnimator.ofFloat(0f, 1f);
animation.setDuration(1000);
animation.addUpdateListener(new AnimatorUpdateListener() {
&#64;Override
public void onAnimationUpdate(ValueAnimator animation) {
Log.i("update", ((Float) animation.getAnimatedValue()).toString());
}
});
animation.setInterpolator(new CycleInterpolator(3));
animation.start();
此示例中只是向Logcat输出了一些信息&#xff0c;可以改为想做的工作。
Animator.AnimatorListener
onAnimationStart()onAnimationEnd()onAnimationRepeat()//当动画被取消时调用&#xff0c;同时会调用onAnimationEnd().
onAnimationCancel()
ValueAnimator.AnimatorUpdateListener
onAnimationUpdate() //通过监听这个事件在属性的值更新时执行相应的操作&#xff0c;对于ValueAnimator一般要监听此事件执行相应的动作&#xff0c;不然Animation没意义&#xff0c;在ObjectAnimator&#xff08;继承自ValueAnimator&#xff09;中会自动更新属性&#xff0c;如无必要不必监听。在函数中会传递一个ValueAnimator参数&#xff0c;通过此参数的getAnimatedValue()取得当前动画属性值。
可以继承AnimatorListenerAdapter而不是实现AnimatorListener接口来简化操作&#xff0c;这个类对AnimatorListener中的函数都定义了一个空函数体&#xff0c;这样我们就只用定义想监听的事件而不用实现每个函数却只定义一空函数体。
ObjectAnimator oa&#61;ObjectAnimator.ofFloat(tv, "alpha", 0f, 1f);
oa.setDuration(3000);
oa.addListener(new AnimatorListenerAdapter(){public void on AnimationEnd(Animator animation){Log.i("Animation","end");}
});
oa.start();
继承自ValueAnimator&#xff0c;要指定一个对象及该对象的一个属性&#xff0c;当属性值计算完成时自动设置为该对象的相应属性&#xff0c;即完成了Property Animation的全部两步操作。实际应用中一般都会用ObjectAnimator来改变某一对象的某一属性&#xff0c;但用ObjectAnimator有一定的限制&#xff0c;要想使用ObjectAnimator&#xff0c;应该满足以下条件&#xff1a;
如果上述条件不满足&#xff0c;则不能用ObjectAnimator&#xff0c;应用ValueAnimator代替。
tv&#61;(TextView)findViewById(R.id.textview1);
btn&#61;(Button)findViewById(R.id.button1);
btn.setOnClickListener(new OnClickListener() {&#64;Overridepublic void onClick(View v) {ObjectAnimator oa&#61;ObjectAnimator.ofFloat(tv, "alpha", 0f, 1f);oa.setDuration(3000);oa.start();}
});
把一个TextView的透明度在3秒内从0变至1。
根据应用动画的对象或属性的不同&#xff0c;可能需要在onAnimationUpdate函数中调用invalidate()函数刷新视图。
AnimationSet提供了一个把多个动画组合成一个组合的机制&#xff0c;并可设置组中动画的时序关系&#xff0c;如同时播放&#xff0c;顺序播放等。
以下例子同时应用5个动画&#xff1a;
AnimatorSet bouncer &#61; new AnimatorSet();
bouncer.play(anim1).before(anim2);
bouncer.play(anim2).with(anim3);
bouncer.play(anim2).with(anim4)
bouncer.play(anim5).after(amin2);
animatorSet.start();
根据属性的开始、结束值与TimeInterpolation计算出的因子计算出当前时间的属性值&#xff0c;android提供了以下几个evalutor&#xff1a;
自定义TypeEvalutor很简单&#xff0c;只需要实现一个方法&#xff0c;如FloatEvalutor的定义&#xff1a;
public class FloatEvaluator implements TypeEvaluator {public Object evaluate(float fraction, Object startValue, Object endValue) {float startFloat &#61; ((Number) startValue).floatValue();return startFloat &#43; fraction * (((Number) endValue).floatValue() - startFloat);}
}
根据动画执行的时间跟应用的Interplator&#xff0c;会计算出一个0~1之间的因子&#xff0c;即evalute函数中的fraction参数&#xff0c;通过上述FloatEvaluator应该很好看出其意思。
Time interplator定义了属性值变化的方式&#xff0c;如线性均匀改变&#xff0c;开始慢然后逐渐快等。在Property Animation中是TimeInterplator&#xff0c;在View Animation中是Interplator&#xff0c;这两个是一样的&#xff0c;在3.0之前只有Interplator&#xff0c;3.0之后实现代码转移至了TimeInterplator。Interplator继承自TimeInterplator&#xff0c;内部没有任何其他代码。
ViewGroup中的子元素可以通过setVisibility使其Visible、Invisible或Gone&#xff0c;当有子元素可见性改变时(VISIBLE、GONE)&#xff0c;可以向其应用动画&#xff0c;通过LayoutTransition类应用此类动画&#xff1a;
transition.setAnimator(LayoutTransition.DISAPPEARING, customDisappearingAnim);
通过setAnimator应用动画&#xff0c;第一个参数表示应用的情境&#xff0c;可以以下4种类型&#xff1a;
第二个参数为一Animator。
mTransitioner.setStagger(LayoutTransition.CHANGE_APPEARING, 30);
此函数设置动画延迟时间&#xff0c;参数分别为类型与时间。
keyFrame是一个 时间/值 对&#xff0c;通过它可以定义一个在特定时间的特定状态&#xff0c;即关键帧&#xff0c;而且在两个keyFrame之间可以定义不同的Interpolator&#xff0c;就好像多个动画的拼接&#xff0c;第一个动画的结束点是第二个动画的开始点。KeyFrame是抽象类&#xff0c;要通过ofInt(),ofFloat(),ofObject()获得适当的KeyFrame&#xff0c;然后通过PropertyValuesHolder.ofKeyframe获得PropertyValuesHolder对象&#xff0c;如以下例子&#xff1a;
Keyframe kf0 &#61; Keyframe.ofInt(0, 400);
Keyframe kf1 &#61; Keyframe.ofInt(0.25f, 200);
Keyframe kf2 &#61; Keyframe.ofInt(0.5f, 400);
Keyframe kf4 &#61; Keyframe.ofInt(0.75f, 100);
Keyframe kf3 &#61; Keyframe.ofInt(1f, 500);
PropertyValuesHolder pvhRotation &#61; PropertyValuesHolder.ofKeyframe("width", kf0, kf1, kf2, kf4, kf3);
ObjectAnimator rotationAnim &#61; ObjectAnimator.ofPropertyValuesHolder(btn2, pvhRotation);
rotationAnim.setDuration(2000);
上述代码的意思为&#xff1a;设置btn对象的width属性值使其&#xff1a;
ObjectAnimator oa&#61;ObjectAnimator.ofInt(btn2, "width", 400,200,400,100,500);
oa.setDuration(2000);
oa.start();
在View Animation中&#xff0c;对View应用Animation并没有改变View的属性&#xff0c;动画的实现是通过其Parent View实现的&#xff0c;在View被drawn时Parents View改变它的绘制参数&#xff0c;draw后再改变参数invalidate&#xff0c;这样虽然View的大小或旋转角度等改变了&#xff0c;但View的实际属性没变&#xff0c;所以有效区域还是应用动画之前的区域&#xff0c;比如你把一按钮放大两倍&#xff0c;但还是放大这前的区域可以触发点击事件。为了改变这一点&#xff0c;在Android 3.0中给View增加了一些参数并对这些参数增加了相应的getter/setter函数&#xff08;ObjectAnimator要用这些函数改变这些属性&#xff09;&#xff1a;
//应用动画之前
btn2.getLeft(); //40
btn2.getX(); //40
btn2.getTranslationX(); //0
//应用translationX动画
ObjectAnimator oa&#61;ObjectAnimator.ofFloat(btn2,"translationX", 200);
oa.setDuration(2000);
oa.start();
/*应用translationX动画后
btn2.getLeft(); //40
btn2.getX(); //240
btn2.getTranslationX(); //200
*/
//应用X动画&#xff0c;假设没有应用之前的translationX动画
ObjectAnimator oa&#61;ObjectAnimator.ofFloat(btn2, "x", 200);
oa.setDuration(2000);
oa.start();
/*应用X动画后
btn2.getLeft(); //40
btn2.getX(); //200
btn2.getTranslationX(); //160
*/
case X:
info.mTranslationX &#61; value - mView.mLeft;
break;
Property Animation也可以在XML中定义
AnimatorSet set &#61; (AnimatorSet) AnimatorInflater.loadAnimator(myContext, R.anim.property_animator);
set.setTarget(myObject);
set.start();
如果需要对一个View的多个属性进行动画可以用ViewPropertyAnimator类&#xff0c;该类对多属性动画进行了优化&#xff0c;会合并一些invalidate()来减少刷新视图&#xff0c;该类在3.1中引入。
以下两段代码实现同样的效果&#xff1a;
PropertyValuesHolder pvhX &#61; PropertyValuesHolder.ofFloat("x", 50f);
PropertyValuesHolder pvhY &#61; PropertyValuesHolder.ofFloat("y", 100f);
ObjectAnimator.ofPropertyValuesHolder(myView, pvhX, pvyY).start();
myView.animate().x(50f).y(100f);
欢迎访问我的个人站点&#xff1a;angeldevil.me
转载请注明出处&#xff01;