当前位置:   article > 正文

Android 动画

android 动画

在App中合理地使用动画能够获得友好愉悦的用户体验,Android中的动画有View动画、属性动画、帧动画、布局动画、转场动画等,在5.x以后有又新增了矢量动画,这些动画在平常开发中使用较为普遍,所以有必要做一次完整的总结。


一、View动画

View动画定义了渐变Alpha、旋转Rotate、缩放Scale、平移Translate四种基本动画,并且通过这四种基本动画的组合使用,可以实现多种交互效果。

View动画使用非常简单,不仅可以通过XML文件来定义动画,同样可以通过Java代码来实现动画过程。

1.Xml文件定义View动画

通过xml来定义View动画涉及到一些公有的属性(在AndroidStudio上不能提示):

  1. android:duration 动画持续时间
  2. android:fillAfter 为true动画结束时,View将保持动画结束时的状态
  3. android:fillBefore 为true动画结束时,View将还原到开始开始时的状态
  4. android:repeatCount 动画重复执行的次数
  5. android:repeatMode 动画重复模式 ,重复播放时restart重头开始,reverse重复播放时倒叙回放,该属性需要和android:repeatCount一起使用
  6. android:interpolator 插值器,相当于变速器,改变动画的不同阶段的执行速度复制代码

这些属性是从Animation中继承下来的,在alpha、rotate、scale、translate标签中都可以直接使用。

利用xml文件定义View动画需要在工程的res目录下创建anim文件夹,所有的xml定义的View动画都要放在anim目录下。

渐变view_anim_alpha.xml:

<?xml version="1.0" encoding="utf-8"?><alphaxmlns:android="http://schemas.android.com/apk/res/android"android:duration="2000"android:fromAlpha="1.0"android:toAlpha="0"></alpha>复制代码

旋转view_anim_rotate.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rotate xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:duration="2000"
  4. android:fillAfter="true"
  5. android:fromDegrees="0"
  6. android:pivotX="50%"
  7. android:pivotY="50%"
  8. android:toDegrees="360">
  9. </rotate>复制代码

缩放view_anim_scale.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <scale xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:duration="2000"
  4. android:fromXScale="1.0"
  5. android:fromYScale="1.0"
  6. android:pivotX="50%"
  7. android:pivotY="50%"
  8. android:toXScale="0.5"
  9. android:toYScale="0.5">
  10. </scale>复制代码

平移view_anim_translate.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <translate xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:duration="2000"
  4. android:fromXDelta="0"
  5. android:fromYDelta="0"
  6. android:toXDelta="100%"
  7. android:toYDelta="100%">
  8. </translate>复制代码

rotate、scale动画的android:pivotX和android:pivotY属性、translate动画的android:toXDelta和android:toYDelta属性的取值都可以是都可以数值、百分数、百分数p,比如:50、50%、50%p,他们取值的代表的意义各不相同:

50表示以View左上角为原点沿坐标轴正方向(x轴向右,y轴向下)偏移50px的位置;

50%表示以View左上角为原点沿坐标轴正方向(x轴向右,y轴向下)偏移View宽度或高度的50%处的位置;

50%p表示以View左上角为原点沿坐标轴正方向(x轴向右,y轴向下)偏移父控件宽度或高度的50%处的位置(p表示相对于ParentView的位置)。

"50"位置点

"50%"位置点

"50%p"位置点

通过定义xml动画资源文件,在Activity中调用:

  1. public void clickToAlpha(View view) {
  2. Animation alphaAnim = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.view_anim_alpha);
  3. mTargetView.startAnimation(alphaAnim);
  4. }
  5. public void clickToRotate(View view) {
  6. Animation rotateAnim = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.view_anim_rotate);
  7. mTargetView.startAnimation(rotateAnim);
  8. }
  9. public void clickToScale(View view) {
  10. Animation scaleAnim = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.view_anim_scale);
  11. mTargetView.startAnimation(scaleAnim);
  12. }
  13. public void clickToTranslate(View view) {
  14. Animation translateAnim = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.view_anim_translate);
  15. mTargetView.startAnimation(translateAnim);
  16. }
  17. public void clickToSet(View view) {
  18. Animation setAnim = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.view_anim_set);
  19. mTargetView.startAnimation(setAnim);
  20. }复制代码
2.Java代码实现View动画

在平常的业务逻辑中也可以直接用Java代码来实现Veiw动画,Android系统给我们提供了AlphaAnimation、RotateAnimation、ScaleAnimation、TranslateAnimation四个动画类分别来实现View的渐变、旋转、缩放、平移动画。

渐变:

  1. public void clickToAlpha(View view) {
  2. AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
  3. alphaAnimation.setDuration(2000);
  4. mTargetView.startAnimation(alphaAnimation);
  5. }复制代码

旋转:

  1. public void clickToRotate(View view) {
  2. RotateAnimation rotateAnimation = new RotateAnimation(
  3. 0, 360,
  4. Animation.RELATIVE_TO_SELF, 0.5f,
  5. Animation.RELATIVE_TO_SELF, 0.5f);
  6. rotateAnimation.setDuration(2000);
  7. mTargetView.startAnimation(rotateAnimation);
  8. }复制代码

缩放:

  1. public void clickToScale(View view) {
  2. ScaleAnimation scaleAnimation = new ScaleAnimation(
  3. 1, 0.5f,
  4. 1, 0.5f,
  5. Animation.RELATIVE_TO_SELF, 0.5f,
  6. Animation.RELATIVE_TO_SELF, 0.5f);
  7. scaleAnimation.setDuration(2000);
  8. mTargetView.startAnimation(scaleAnimation);
  9. }复制代码

平移:

  1. public void clickToTranslate(View view) {
  2. TranslateAnimation translateAnimation = new TranslateAnimation(
  3. Animation.RELATIVE_TO_SELF, 0,
  4. Animation.RELATIVE_TO_SELF, 1,
  5. Animation.RELATIVE_TO_SELF, 0,
  6. Animation.RELATIVE_TO_SELF, 1);
  7. translateAnimation.setDuration(2000);
  8. mTargetView.startAnimation(translateAnimation);
  9. }复制代码

组合:

  1. public void clickToSet(View view) {
  2. AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
  3. alphaAnimation.setDuration(2000);
  4. RotateAnimation rotateAnimation = new RotateAnimation(
  5. 0, 360,
  6. Animation.RELATIVE_TO_SELF, 0.5f,
  7. Animation.RELATIVE_TO_SELF, 0.5f);
  8. rotateAnimation.setDuration(2000);
  9. ScaleAnimation scaleAnimation = new ScaleAnimation(
  10. 1, 0.5f,
  11. 1, 0.5f,
  12. Animation.RELATIVE_TO_SELF, 0.5f,
  13. Animation.RELATIVE_TO_SELF, 0.5f);
  14. scaleAnimation.setDuration(2000);
  15. TranslateAnimation translateAnimation = new TranslateAnimation(
  16. Animation.RELATIVE_TO_SELF, 0,
  17. Animation.RELATIVE_TO_SELF, 1,
  18. Animation.RELATIVE_TO_SELF, 0,
  19. Animation.RELATIVE_TO_SELF, 1);
  20. translateAnimation.setDuration(2000);
  21. AnimationSet animationSet = new AnimationSet(true);
  22. animationSet.addAnimation(alphaAnimation);
  23. animationSet.addAnimation(rotateAnimation);
  24. animationSet.addAnimation(scaleAnimation);
  25. animationSet.addAnimation(translateAnimation);
  26. mTargetView.startAnimation(animationSet);
  27. }复制代码

View动画效果

View动画可以设置一个动画执行的监听器:

  1. animation.setAnimationListener(new Animation.AnimationListener() {
  2. @Override
  3. public void onAnimationStart(Animation animation) {
  4. // 动画开始
  5. }
  6. @Override
  7. public void onAnimationEnd(Animation animation) {
  8. // 动画结束
  9. }
  10. @Override
  11. public void onAnimationRepeat(Animation animation) {
  12. //动画重复
  13. }
  14. });复制代码

通过设置监听器可以在动画执行的开始、结束、重复时做一些其他的业务逻辑。


二、属性动画

所谓属性动画,就是改变对象Object的属性来实现动画过程。属性动画是对View的动画的扩展,通过它可以实现更多漂亮的动画效果。同时属性动画的作用对象不仅仅是View,任何对象都可以。

属性动画的作用效果就是:在一个指定的时间段内将对象的一个属性的属性值动态地变化到另一个属性值。

1.ObjectAnimator

ObjectAnimator是最常用的属性动画执行类。

  1. privatevoidstartJavaPropertyAnimator() {
  2. ObjectAnimator
  3. .ofFloat(mImageView, "rotationY", 0f, 360f)
  4. .setDuration(2000)
  5. .start();
  6. }复制代码

上面的代码就是通过ObjectAnimator在2000ms内将mImageView的rotationY属性的属性值从0f变化的360f。

ObjectAnimator实现属性动画

ObjectAnimtor可以用ofInt、ofFloat、ofObject等静态方法,传入动画作用的目标Object、属性字段、属性开始值、属性中间值、属性结束值等参数来构造动画对象。

在动画更新的过程中,通过不断去调用对象属性的setter方法改变属性值,不断重绘实现动画过程。如果没有给定动画开始属性值,那么系统会通过反射去获取Object对象的初始值作为动画的开始值。

属性动画也同样可以通过xml文件来定义,同样在工程的res目录下创建animator文件夹,xml文件定义的objectAnimator动画要放在该文件夹下。

property_animator.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:duration="2000"
  4. android:propertyName="rotationY"
  5. android:valueFrom="0"
  6. android:valueTo="360"
  7. android:valueType="floatType">
  8. </objectAnimator>复制代码

Java代码调用:

  1. private void startXmlPropertyAnimator() {
  2. Animator animator = AnimatorInflater.loadAnimator(getApplicationContext(),
  3. R.animator.property_animator);
  4. animator.setTarget(mImageView);
  5. animator.start();
  6. }复制代码

最终效果如上图。

属性动画也同样可以组合使用,通过AnimatorSet类和xml文件的set标签都可以同时改变对象的多个属性,实现更加丰富的动画效果。

通过AnimatorSet创建动画集:

  1. private void startJavaPropertyAnimatorSet() {
  2. Animator scaleXAnimator = ObjectAnimator.ofFloat(mImageView, "scaleX", 1, 0.5f);
  3. scaleXAnimator.setDuration(2000);
  4. Animator scaleYAnimator = ObjectAnimator.ofFloat(mImageView, "scaleY", 1, 0.5f);
  5. scaleYAnimator.setDuration(2000);
  6. Animator rotationXAnimator = ObjectAnimator.ofFloat(mImageView, "rotationX", 0, 360);
  7. rotationXAnimator.setDuration(2000);
  8. Animator rotationYAnimator = ObjectAnimator.ofFloat(mImageView, "rotationY", 0, 360);
  9. rotationYAnimator.setDuration(2000);
  10. AnimatorSet animatorSet = new AnimatorSet();
  11. animatorSet.play(scaleXAnimator)
  12. .with(scaleYAnimator)
  13. .before(rotationXAnimator)
  14. .after(rotationYAnimator);
  15. animatorSet.start();
  16. }复制代码

AnimatorSet通过before、with、after三个方法可以组合多个属性动画,with表示与给定动画同时执行,before在给定动画执行之前执行,after表示在给定动画执行之后执行。

AnimatorSet构建属性动画集

通过xml文件定义属性动画集:

property_animator_set.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <set xmlns:android="http://schemas.android.com/apk/res/android">
  3. <objectAnimator
  4. android:duration="2000"
  5. android:propertyName="scaleX"
  6. android:valueFrom="1"
  7. android:valueTo="0.5"
  8. android:valueType="floatType"/>
  9. <objectAnimator
  10. android:duration="2000"
  11. android:propertyName="scaleY"
  12. android:valueFrom="1"
  13. android:valueTo="0.5"
  14. android:valueType="floatType"/>
  15. <objectAnimator
  16. android:duration="2000"
  17. android:propertyName="alpha"
  18. android:valueFrom="1"
  19. android:valueTo="0.5"
  20. android:valueType="floatType"/>
  21. </set>复制代码

在Java代码中调用属性动画集:

  1. private void startxmlPropertyAnimatorSet() {
  2. Animator animator = AnimatorInflater.loadAnimator(getApplicationContext(),
  3. R.animator.property_animator_set);
  4. animator.setTarget(mImageView);
  5. animator.start();
  6. }复制代码

xml定义属性动画集

同样,属性动画也可以添加动画执行监听器:

  1. animator.addListener(new Animator.AnimatorListener() {
  2. @Override
  3. public void onAnimationStart(Animator animation) {
  4. // 动画开始
  5. }
  6. @Override
  7. public void onAnimationEnd(Animator animation) {
  8. // 动画结束
  9. }
  10. @Override
  11. public void onAnimationCancel(Animator animation) {
  12. // 动画取消
  13. }
  14. @Override
  15. public void onAnimationRepeat(Animator animation) {
  16. // 动画重复
  17. }
  18. });复制代码

在监听到属性动画开始、结束、取消、重复时可以去做一些其他的逻辑业务。

2.ValueAnimator

ValueAnimator是ObjectAnimator的父类,它继承自Animator。ValueAnimaotor同样提供了ofInt、ofFloat、ofObject等静态方法,传入的参数是动画过程的开始值、中间值、结束值来构造动画对象。可以将ValueAnimator看着一个值变化器,即在给定的时间内将一个目标值从给定的开始值变化到给定的结束值。在使用ValueAnimator时通常需要添加一个动画更新的监听器,在监听器中能够获取到执行过程中的每一个动画值。

  1. privatevoidstartValueAnimator() {
  2. ValueAnimatorvalueAnimator= ValueAnimator.ofFloat(0, 1);
  3. valueAnimator.setDuration(300);
  4. valueAnimator.start();
  5. valueAnimator.addUpdateListener(newValueAnimator.AnimatorUpdateListener() {
  6. @OverridepublicvoidonAnimationUpdate(ValueAnimator animation) {
  7. // 动画更新过程中的动画值,可以根据动画值的变化来关联对象的属性,实现属性动画floatvalue= (float) animation.getAnimatedValue();
  8. Log.d("ValueAnimator", "动画值:" + value);
  9. }
  10. });
  11. }复制代码

在300ms内将数值0变化到1的动画值的变化log:

02-25 23:16:57.586 D/ValueAnimator:动画值:0.002-25 23:16:57.596 D/ValueAnimator:动画值:0.00790217502-25 23:16:57.616 D/ValueAnimator:动画值:0.02955961202-25 23:16:57.636 D/ValueAnimator:动画值:0.06698727602-25 23:16:57.646 D/ValueAnimator:动画值:0.11810201402-25 23:16:57.666 D/ValueAnimator:动画值:0.1812879702-25 23:16:57.686 D/ValueAnimator:动画值:0.254548202-25 23:16:57.706 D/ValueAnimator:动画值:0.3306310202-25 23:16:57.716 D/ValueAnimator:动画值:0.416615702-25 23:16:57.736 D/ValueAnimator:动画值:0.505235902-25 23:16:57.746 D/ValueAnimator:动画值:0.593690602-25 23:16:57.766 D/ValueAnimator:动画值:0.6791839602-25 23:16:57.786 D/ValueAnimator:动画值:0.754520802-25 23:16:57.796 D/ValueAnimator:动画值:0.8267103402-25 23:16:57.826 D/ValueAnimator:动画值:0.8885729302-25 23:16:57.836 D/ValueAnimator:动画值:0.9381532702-25 23:16:57.856 D/ValueAnimator:动画值:0.972188202-25 23:16:57.876 D/ValueAnimator:动画值:0.9938441502-25 23:16:57.886 D/ValueAnimator:动画值:1.0复制代码

ValueAnimator的使用一般会结合更新监听器AnimatorUpdateListener,大多数时候是在自定义控件时使用。

下面是用ValueAnimator自定义控件实现动画打开关闭效果。

expanded_veiw.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@android:color/white"
  6. android:divider="@drawable/divider"
  7. android:orientation="vertical"
  8. android:showDividers="middle">
  9. <LinearLayout
  10. android:id="@+id/ll_expanded_question"
  11. android:layout_width="match_parent"
  12. android:layout_height="48dp"
  13. android:gravity="center_vertical">
  14. <TextView
  15. android:id="@+id/tv_expanded_question"
  16. android:layout_width="0dp"
  17. android:layout_height="48dp"
  18. android:layout_weight="1"
  19. android:gravity="center_vertical"
  20. android:padding="8dp"
  21. android:text="如何把一本很难的书看懂?"
  22. android:textColor="#999999"
  23. android:textSize="16sp"/>
  24. <ImageView
  25. android:id="@+id/iv_expanded_indicator"
  26. android:layout_width="16dp"
  27. android:layout_height="16dp"
  28. android:layout_marginRight="16dp"
  29. android:src="@drawable/img_up"/>
  30. </LinearLayout>
  31. <TextView
  32. android:id="@+id/tv_expanded_answer"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:padding="8dp"
  36. android:text="多读几遍。真的特别有用。至少看三遍。从开头看,看到中间,重头再来,再看得多一点,在从新开始,建议看到快结束时再从新开始。"
  37. android:textColor="#999999"
  38. android:textSize="16sp"/>
  39. </LinearLayout>复制代码
  1. publicclassExpandedViewextendsFrameLayout {
  2. private TextView mTvAnswer;
  3. privateboolean isClosed;
  4. private ImageView mIvIndicator;
  5. publicExpandedView(Context context, AttributeSet attrs) {
  6. super(context, attrs);
  7. init(context);
  8. }
  9. privatevoidinit(Context context) {
  10. Viewview= LayoutInflater.from(context).inflate(R.layout.expanded_view, this, true);
  11. LinearLayoutllQuestion= (LinearLayout) view.findViewById(R.id.ll_expanded_question);
  12. llQuestion.setOnClickListener(newOnClickListener() {
  13. @OverridepublicvoidonClick(View v) {
  14. anim();
  15. }
  16. });
  17. mTvAnswer = (TextView) view.findViewById(R.id.tv_expanded_answer);
  18. mIvIndicator = (ImageView) view.findViewById(R.id.iv_expanded_indicator);
  19. }
  20. privatevoidanim() {
  21. // 指示器旋转ValueAnimatorvalueAnimator1= isClosed
  22. ? ValueAnimator.ofFloat(180, 0)
  23. : ValueAnimator.ofFloat(0, 180);
  24. valueAnimator1.setDuration(500);
  25. valueAnimator1.addUpdateListener(newValueAnimator.AnimatorUpdateListener() {
  26. @OverridepublicvoidonAnimationUpdate(ValueAnimator animation) {
  27. floatvalue= (float) animation.getAnimatedValue();
  28. mIvIndicator.setRotation(value);
  29. }
  30. });
  31. valueAnimator1.start();
  32. // 打开开关闭操作finalintanswerHeight= mTvAnswer.getMeasuredHeight();
  33. ValueAnimatorvalueAnimator2= isClosed
  34. ? ValueAnimator.ofInt(-answerHeight, 0)
  35. : ValueAnimator.ofInt(0, -answerHeight);
  36. valueAnimator2.setDuration(500);
  37. finalMarginLayoutParamsparams= (MarginLayoutParams) mTvAnswer.getLayoutParams();
  38. valueAnimator2.addUpdateListener(newValueAnimator.AnimatorUpdateListener() {
  39. @OverridepublicvoidonAnimationUpdate(ValueAnimator animation) {
  40. intvalue= (int) animation.getAnimatedValue();
  41. params.bottomMargin = value;
  42. mTvAnswer.setLayoutParams(params);
  43. }
  44. });
  45. valueAnimator2.addListener(newAnimator.AnimatorListener() {
  46. @OverridepublicvoidonAnimationStart(Animator animation) {
  47. }
  48. @OverridepublicvoidonAnimationEnd(Animator animation) {
  49. isClosed = !isClosed;
  50. }
  51. @OverridepublicvoidonAnimationCancel(Animator animation) {
  52. }
  53. @OverridepublicvoidonAnimationRepeat(Animator animation) {
  54. }
  55. });
  56. valueAnimator2.start();
  57. }
  58. }复制代码

ValueAnimator自定义控件效果图

3.TypeEvaluator

ObjectAnimator和ValueAnimator都有ofObject方法,传入的都有一个TypeEvaluator类型的参数。TypeEvaluator是一个接口,里面也只有一个抽象方法:

public T evaluate(float fraction, T startValue, T endValue);复制代码

再看ofInt方法中没有传入该参数,但实际上调用ofInt方法时,系统已经有实现了TypeEvaluator接口的IntEvaluator,它的源码也非常简单:

  1. public Integer evaluate(float fraction, Integer startValue, Integer endValue) {
  2. int startInt = startValue;
  3. return (int)(startInt + fraction * (endValue - startInt));
  4. }复制代码

fraction范围为0到1,表示动画执行过程中已完成程度。

泛型T即为动画执行的属性类型。

所以我们要用属性动画来执行复杂对象的动画过程,就需要自定义TypeEvaluator,实现动画逻辑。

先来定义一个对象

  1. publicclassCircle {
  2. privateint raduis; // 半径privateint color; // 颜色privateint elevation; // 高度publicCircle(int raduis, int color, int elevation) {
  3. this.raduis = raduis;
  4. this.color = color;
  5. this.elevation = elevation;
  6. }
  7. publicintgetRaduis() {
  8. return raduis;
  9. }
  10. publicvoidsetRaduis(int raduis) {
  11. this.raduis = raduis;
  12. }
  13. publicintgetColor() {
  14. return color;
  15. }
  16. publicvoidsetColor(int color) {
  17. this.color = color;
  18. }
  19. publicintgetElevation() {
  20. return elevation;
  21. }
  22. publicvoidsetElevation(int elevation) {
  23. this.elevation = elevation;
  24. }
  25. }复制代码

自定义控件CircleView,将Circle作为它的一个属性:

  1. public class CircleView extends View {
  2. private Circle circle;
  3. private Paint mPaint;
  4. public CircleView(Context context, AttributeSet attrs) {
  5. super(context, attrs);
  6. circle = new Circle(168, Color.RED, 0);
  7. mPaint = new Paint();
  8. mPaint.setAntiAlias(true);
  9. }
  10. @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
  11. @Override
  12. protected void onDraw(Canvas canvas) {
  13. super.onDraw(canvas);
  14. setElevation(circle.getElevation());
  15. mPaint.setColor(circle.getColor());
  16. canvas.drawCircle(getMeasuredHeight() / 2, getMeasuredHeight() / 2, circle.getRaduis(), mPaint);
  17. }
  18. public void setCircle(Circle circle) {
  19. this.circle = circle;
  20. postInvalidate();
  21. }
  22. public Circle getCircle() {
  23. return circle;
  24. }
  25. }复制代码

ObjectAnimator使用:

  1. private void start1() {
  2. Circle startCircle = new Circle(168, Color.RED, 0);
  3. Circle middleCircle = new Circle(300, Color.GREEN, 15);
  4. Circle endCircle = new Circle(450, Color.BLUE, 30);
  5. ObjectAnimator.ofObject(mCircleView, "circle", new CircleEvaluator(), startCircle, middleCircle, endCircle)
  6. .setDuration(5000)
  7. .start();
  8. }复制代码

ValueAnimator使用:

  1. private void start2() {
  2. Circle startCircle = new Circle(168, Color.RED, 0);
  3. Circle middleCircle = new Circle(300, Color.GREEN, 15);
  4. Circle endCircle = new Circle(450, Color.BLUE, 30);
  5. ValueAnimator valueAnimator = ValueAnimator.ofObject(new CircleEvaluator(), startCircle, middleCircle, endCircle);
  6. valueAnimator.setDuration(5000);
  7. valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
  8. @Override
  9. public void onAnimationUpdate(ValueAnimator animation) {
  10. Circle circle = (Circle) animation.getAnimatedValue();
  11. mCircleView.setCircle(circle);
  12. }
  13. });
  14. valueAnimator.start();
  15. }复制代码

自定义TypeEvaluator效果图

需要注意的是,系统调用获取控件setter、getter方法是通过反射获取的,属性的名称必须和getter、setter方法名称后面的字符串一致,比如上面的getter、setter方法分别为getCircle、setCircle,那么属性名字就必须为circle。


三、帧动画

帧动画需要开发者制定好动画每一帧,系统一帧一帧的播放图片。

  1. private void start1() {
  2. AnimationDrawable ad = new AnimationDrawable();
  3. for (int i = 0; i < 7; i++) {
  4. Drawable drawable = getResources().getDrawable(getResources().getIdentifier("ic_fingerprint_" + i, "drawable", getPackageName()));
  5. ad.addFrame(drawable, 100);
  6. }
  7. ad.setOneShot(false);
  8. mImageView.setImageDrawable(ad);
  9. ad.start();
  10. }复制代码

帧动画同样也可以在xml文件中配置,直接在工程drawable目录新建animation-list标签:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <animation-list xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:oneshot="false">
  4. <item android:drawable="@drawable/ic_fingerprint_0" android:duration="100"/>
  5. <item android:drawable="@drawable/ic_fingerprint_1" android:duration="100"/>
  6. <item android:drawable="@drawable/ic_fingerprint_2" android:duration="100"/>
  7. <item android:drawable="@drawable/ic_fingerprint_3" android:duration="100"/>
  8. <item android:drawable="@drawable/ic_fingerprint_4" android:duration="100"/>
  9. <item android:drawable="@drawable/ic_fingerprint_5" android:duration="100"/>
  10. <item android:drawable="@drawable/ic_fingerprint_6" android:duration="100"/>
  11. </animation-list>复制代码
  1. private void start2() {
  2. mImageView.setImageResource(R.drawable.frame_anim);
  3. AnimationDrawable animationDrawable = (AnimationDrawable) mImageView.getDrawable();
  4. animationDrawable.start();
  5. }复制代码

其中android:onshot属性和setOneShot方法表示是否只执行一次。

AnimationDrawable实际是上是一个Drawable动画,动画执行的过程总会给你不断重绘Drawable的每一帧图像,实现动态播放效果。

帧动画效果图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/523763
推荐阅读
相关标签
  

闽ICP备14008679号