属性动画高级运用

1、自定义TypeEvaluator

1、TypeEvaluator的作用

  • 告诉动画系统如何从初始值过度到结束值

2、FloatEvaluator的代码实现:

  • evaluate()方法当中传入了三个参数,第一个参数fraction非常重要,这个参数用于表示动画的完成度的,我们应该根据它来计算当前动画的值应该是多少,第二第三个参数分别表示动画的初始值和结束值。那么上述代码的逻辑就比较清晰了,用结束值减去初始值,算出它们之间的差值,然后乘以fraction这个系数,再加上初始值,那么就得到当前动画的值了。

    public class FloatEvaluator implements TypeEvaluator {  
      public Object evaluate(float fraction, Object startValue, Object endValue) {  
          float startFloat = ((Number) startValue).floatValue();  
          return startFloat + fraction * (((Number) endValue).floatValue() - startFloat);  
      }  
    }  
    

3、使用ValueAnimator.ofObject()时,自定义TypeEvaluator

  • 先定义一个Point类

    public class Point {  
    
      private float x;  
    
      private float y;  
    
      public Point(float x, float y) {  
          this.x = x;  
          this.y = y;  
      }  
    
      public float getX() {  
          return x;  
      }  
    
      public float getY() {  
          return y;  
      }  
    
    }  
    
  • 定义PointEvaluator

    public class PointEvaluator implements TypeEvaluator{  
    
      @Override  
      public Object evaluate(float fraction, Object startValue, Object endValue) {  
          Point startPoint = (Point) startValue;  
          Point endPoint = (Point) endValue;  
          float x = startPoint.getX() + fraction * (endPoint.getX() - startPoint.getX());  
          float y = startPoint.getY() + fraction * (endPoint.getY() - startPoint.getY());  
          Point point = new Point(x, y);  
          return point;  
      }  
    
    }  
    
  • 自定义ColorEvaluator(ObjectAnimator必须保证作用对象有set和get)

    public class ColorEvaluator implements TypeEvaluator {  
    
          private int mCurrentRed = -1;  
    
          private int mCurrentGreen = -1;  
    
          private int mCurrentBlue = -1;  
    
          @Override  
          public Object evaluate(float fraction, Object startValue, Object endValue) {  
              String startColor = (String) startValue;  
              String endColor = (String) endValue;  
              int startRed = Integer.parseInt(startColor.substring(1, 3), 16);  
              int startGreen = Integer.parseInt(startColor.substring(3, 5), 16);  
              int startBlue = Integer.parseInt(startColor.substring(5, 7), 16);  
              int endRed = Integer.parseInt(endColor.substring(1, 3), 16);  
              int endGreen = Integer.parseInt(endColor.substring(3, 5), 16);  
              int endBlue = Integer.parseInt(endColor.substring(5, 7), 16);  
              // 初始化颜色的值  
              if (mCurrentRed == -1) {  
                  mCurrentRed = startRed;  
              }  
              if (mCurrentGreen == -1) {  
                  mCurrentGreen = startGreen;  
              }  
              if (mCurrentBlue == -1) {  
                  mCurrentBlue = startBlue;  
              }  
              // 计算初始颜色和结束颜色之间的差值  
              int redDiff = Math.abs(startRed - endRed);  
              int greenDiff = Math.abs(startGreen - endGreen);  
              int blueDiff = Math.abs(startBlue - endBlue);  
              int colorDiff = redDiff + greenDiff + blueDiff;  
              if (mCurrentRed != endRed) {  
                  mCurrentRed = getCurrentColor(startRed, endRed, colorDiff, 0,  
                  fraction);  
              } else if (mCurrentGreen != endGreen) {  
                  mCurrentGreen = getCurrentColor(startGreen, endGreen, colorDiff,  
                  redDiff, fraction);  
              } else if (mCurrentBlue != endBlue) {  
                  mCurrentBlue = getCurrentColor(startBlue, endBlue, colorDiff,  
                  redDiff + greenDiff, fraction);  
              }  
              // 将计算出的当前颜色的值组装返回  
              String currentColor = "#" + getHexString(mCurrentRed)  
              + getHexString(mCurrentGreen) + getHexString(mCurrentBlue);  
              return currentColor;  
          }  
    
          /** 
           * 根据fraction值来计算当前的颜色。 
           */  
          private int getCurrentColor(int startColor, int endColor, int colorDiff,  
          int offset, float fraction) {  
              int currentColor;  
              if (startColor > endColor) {  
                  currentColor = (int) (startColor - (fraction * colorDiff - offset));  
                  if (currentColor < endColor) {  
                      currentColor = endColor;  
                  }  
              } else {  
                  currentColor = (int) (startColor + (fraction * colorDiff - offset));  
                  if (currentColor > endColor) {  
                      currentColor = endColor;  
                  }  
              }  
              return currentColor;  
          }  
    
          /** 
           * 将10进制颜色值转换成16进制。 
           */  
          private String getHexString(int value) {  
              String hexString = Integer.toHexString(value);  
              if (hexString.length() == 1) {  
                  hexString = "0" + hexString;  
              }  
              return hexString;  
          }  
    
      }  
    
  • 使用

    public class MyAnimView extends View {  
    
      public static final float RADIUS = 50f;  
    
      private Point currentPoint;  
    
      private Paint mPaint;  
    
      public MyAnimView(Context context, AttributeSet attrs) {  
          super(context, attrs);  
          mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);  
          mPaint.setColor(Color.BLUE);  
      }  
    
      private String color;  
    
      public String getColor() {  
          return color;  
      }  
    
      public void setColor(String color) {  
          this.color = color;  
          mPaint.setColor(Color.parseColor(color));  
          invalidate();  
      }  
    
      @Override  
      protected void onDraw(Canvas canvas) {  
          if (currentPoint == null) {  
              currentPoint = new Point(RADIUS, RADIUS);  
              drawCircle(canvas);  
              startAnimation();  
          } else {  
              drawCircle(canvas);  
          }  
      }  
    
      private void drawCircle(Canvas canvas) {  
          float x = currentPoint.getX();  
          float y = currentPoint.getY();  
          canvas.drawCircle(x, y, RADIUS, mPaint);  
      }  
    
      private void startAnimation() {  
          Point startPoint = new Point(RADIUS, RADIUS);  
          Point endPoint = new Point(getWidth() - RADIUS, getHeight() - RADIUS);  
          ValueAnimator anim = ValueAnimator.ofObject(new PointEvaluator(), startPoint, endPoint);  
          anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {  
              @Override  
              public void onAnimationUpdate(ValueAnimator animation) {  
                  currentPoint = (Point) animation.getAnimatedValue();  
                  invalidate();  
              }  
          });  
          ObjectAnimator anim2 = ObjectAnimator.ofObject(this, "color", new ColorEvaluator(),   
              "#0000FF", "#FF0000");  
          AnimatorSet animSet = new AnimatorSet();  
          animSet.play(anim).with(anim2);  
          animSet.setDuration(5000);  
          animSet.start();  
      }  
    
    }  
    
  • 效果


    20150504225554203.gif

2、自定义TimeInterpolator

1、TimeInterpolator

  • 它的主要作用是可以控制动画的变化速率,比如去实现一种非线性运动的动画效果。

2、 TimeInterpolator源码

  • 只有一个getInterpolation()方法。大家有兴趣可以通过注释来对这个接口进行详解的了解,这里我就简单解释一下,getInterpolation()方法中接收一个input参数,这个参数的值会随着动画的运行而不断变化,不过它的变化是非常有规律的,就是根据设定的动画时长匀速增加,变化范围是0到1。也就是说当动画一开始的时候input的值是0,到动画结束的时候input的值是1,而中间的值则是随着动画运行的时长在0到1之间变化的。

  • nput的值是由系统经过计算后传入到getInterpolation()方法中的,然后我们可以自己实现getInterpolation()方法中的算法,根据input的值来计算出一个返回值,而这个返回值就是fraction了。

    public interface TimeInterpolator {  
    
        float getInterpolation(float input);  
    }  
    

3、自定义DecelerateAccelerateInterpolator,实现先减速后加速的效果

  • DecelerateAccelerateInterpolato

    public class DecelerateAccelerateInterpolator implements TimeInterpolator{  
    
      @Override  
      public float getInterpolation(float input) {  
          float result;  
          if (input <= 0.5) {  
              result = (float) (Math.sin(Math.PI * input)) / 2;  
          } else {  
              result = (float) (2 - Math.sin(Math.PI * input)) / 2;  
          }  
          return result;  
      }  
    
    }  
    
  • 使用效果 anim.setInterpolator(new DecelerateAccelerateInterpolator());

    20150530230114481.gif

  • 另外,系统提供了BounceInterpolator,是一种可以模拟物理规律,实现反复弹起效果的Interpolator


    20150530230521897.gif
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,468评论 5 473
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,620评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,427评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,160评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,197评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,334评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,775评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,444评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,628评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,459评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,508评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,210评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,767评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,850评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,076评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,627评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,196评论 2 341

推荐阅读更多精彩内容

  • 一、概述 在Android动画中,总共有两种类型的动画View Animation(视图动画)和Property ...
    summer_lz阅读 740评论 1 0
  • 对于开发人员来说,设计模式有时候就是一道坎,但是设计模式又非常有用,过了这道坎,它可以让你水平提高一个档次。而在a...
    WANKUN阅读 253评论 0 2
  • 动画介绍: 在Android动画中,总共有两种类型的动画View Animation(视图动画)和Property...
    Varmin阅读 653评论 0 0
  • 今天见了一个朋友让我伤怀。 如果他不是站在路边向我摇手示意,我会认为是路人甲乙而擦身而过。 吃饭时我端详了一下,他...
    挎刀走天涯阅读 168评论 0 0
  • 你有亲眼看见过爱情的样子吗? 她躺在病床上,由于长期卧床腰部长了褥疮,只能在各种支撑物的力量下保持侧卧...
    在树下阅读 261评论 0 0