码迷,mamicode.com
首页 > 其他好文 > 详细

属性动画

时间:2015-04-20 12:49:45      阅读:541      评论:0      收藏:0      [点我收藏+]

标签:

数值插播器

final Button button = new Button(this);
ValueAnimator animator = ValueAnimator.ofInt(0,100);
animator.setDuration(5000);
animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
     @Override
     public void onAnimationUpdate(ValueAnimator animation) {
          Integer value = (Integer)animation.getAnimatedValue();
          button.setText("" + value);
     }
});
animator.start();

 

技术分享

技术分享

 

技术分享

 

 

——AccelerateInterpolator:动画从开始到结束,变化率是一个加速的过程。
——DecelerateInterpolator:动画从开始到结束,变化率是一个减速的过程。
——CycleInterpolator:动画从开始到结束,变化率是循环给定次数的正弦曲线。
——AccelerateDecelerateInterpolator:动画从开始到结束,变化率是先加速后减速的过程。
——LinearInterpolator:动画从开始到结束,变化率是线性变化。

 

属性动画

标签:

原文地址:http://www.cnblogs.com/huangzx/p/4427232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!