加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ValueAnimator 使用注意事项

发布时间:2020-12-16 23:42:07 所属栏目:百科 来源:网络整理
导读:1、动画时间:如果是xml定义的值,需要使用 getResources().getInteger(int)获取值 2、动画重复次数:Integer. MAX_VALUE 改为Integer. MAX_VALUE2 ? mIconAnimator = new ValueAnimator() ; mIconAnimator.setDuration(getResources().getInteger(android.R

1、动画时间:如果是xml定义的值,需要使用getResources().getInteger(int)获取值

2、动画重复次数:Integer.MAX_VALUE 改为Integer.MAX_VALUE>>2

?

mIconAnimator = new ValueAnimator();
mIconAnimator.setDuration(getResources().getInteger(android.R.integer.config_mediumAnimTime));
mIconAnimator.addUpdateListener(
new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
int rotation = (int) animation.getAnimatedValue();
Log.e("OkHttp","rotation=" + rotation);
ivButtonIcon.setRotation(rotation);
}
}
);
mIconAnimator.setRepeatCount(1);
mIconAnimator.setInterpolator(new AccelerateDecelerateInterpolator());



mIconAnimator.cancel();
int from = (int) (ivButtonIcon.getRotation() % 360f);
int to = reset ? 0 : 90;
if (from == to) return;
mIconAnimator.setIntValues(from,to);
mIconAnimator.start();

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读