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
共有 0 条评论