Android ObjectAnimator动画效果实现

一、

ObjectAnimator.ofFloat(imageView, "rotation", 0f, 360f).setDuration(1000).start();

第一个括号参数:图片控件,动画效果属性,初始状态(浮点型),结束状态(浮点型)。

第二个括号属性:动画时间(毫秒)。、

动画属行:

1)translationX 和 translationY:这两个属性控制了View所处的位置,它们的值是由layout容器设置的,是相对于坐标原点(0,0左上角)的一个偏移量。

2)rotation, rotationX 和 rotationY:控制View绕着轴点(pivotX和pivotY)旋转。

3)scaleX 和 scaleY:控制View基于pivotX和pivotY的缩放。

4)pivotX 和 pivotY:旋转的轴点和缩放的基准点,默认是View的中心点。

5)x 和 y:描述了view在其父容器中的最终位置,是左上角左标和偏移量(translationX,translationY)的和。

6)aplha:透明度,1是完全不透明,0是完全透明。

二、多个动画同时显示,多个动画时较写多个一中方法做了优化。

PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat("alpha", 1f, 0f, 200f);
PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat("scaleX", 1f, 0, 200f);
PropertyValuesHolder pvhZ = PropertyValuesHolder.ofFloat("scaleY", 1f, 0, 200f);
ObjectAnimator.ofPropertyValuesHolder(imageView, pvhX, pvhY,pvhZ).setDuration(1000).start();

三、

ObjectAnimator animator1 = ObjectAnimator.ofFloat(imageView, "rotation", 0f, 360f);
ObjectAnimator animator2 = ObjectAnimator.ofFloat(imageView, "scaleX", 0f, 200f);
ObjectAnimator animator3 = ObjectAnimator.ofFloat(imageView, "scaleY", 0f, 200f);
AnimatorSet animSet = new AnimatorSet();
animSet.playTogether(animator1, animator2, animator3 );  //同时执行
//animSet.playSequentially(animator1, animator2, animator3 );  //顺序执行
animSet.setDuration(1000);  
animSet.start();     

/** 
* animator2,animator3同时执行 
* animator1接着执行 
*/  
AnimatorSet animSet = new AnimatorSet();  
animSet.play(animator2).with(animator3); 
animSet.play(animator1).after(animator3);  
animSet.setDuration(1000);  
animSet.start(); 

参考:http://blog.csdn.net/lmj623565791/article/details/38067475


你可能感兴趣的:(动画效果,详解案例)