ObjectAnimator(使用)

原文链接:https://blog.csdn.net/xiaochuanding/article/details/73290917 此文章作为笔记,自己私下学习使用 如果看到 还请移步原文观摩
ObjectAnimator继承自ValueAnimator,所以ValueAnimator所能使用的方法,ObjectAnimator都可以使用,ObjectAnimator同时也重写了几个方法,比如:ofInt() ofFloat()等
//透明度动画
ObjectAnimator animator = ObjectAnimator.ofFloat(view,"alpha",1,0,1);
animator.setDuration(2000);
animator.start();

//旋转动画:围绕x轴旋转
ObjectAnimator animator = ObjectAnimator.ofFloat

ObjectAnimator(使用)最先出现在Python成神之路

版权声明:
作者:感冒的梵高
链接:https://www.techfm.club/p/9869.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>