Android动画创建方式

这篇博客详细介绍了Android属性动画的创建方式,包括通过ViewPropertyAnimator和ObjectAnimator创建动画,以及如何添加动画监听。讲解了各种方法的用法,如setDuration、setInterpolator,以及动画开始、结束、取消和重复的监听回调。
摘要由CSDN通过智能技术生成

这里记录一下属性动画

1.通过ViewPropertyAnimator创建

    ViewPropertyAnimator animate = imageView.animate();
    animate.translationX(50000).setDuration(10000);

   imageView.animate获取到ViewPropertyAnimator对象,translationX是向X轴平移 ,setDuration是设置时长,也就是完成本次      动画花费的时间,还有其他的api如下

2.通过ObjectAnimator创建

       自定义view

    ObjectAnimator progress = ObjectAnimator.ofFloat(view, "progress", 0, 95);
    progress.setDuration(1000);
    progress.setInterpolator(new LinearInterpolator());
    progress.start();

     系统的view

ObjectAnimator animator = ObjectAnimator.ofFloat(imageView2, "translationX", 5000);
animator.setDuration(2000);
animator.start();

使用方式如下:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值