alpha 透明度
rotation z轴旋转
rotationX x轴旋转
rotationY y轴旋转
translationX x水平偏移
translationY y水平偏移
ScaleX x轴缩放
ScaleY y轴缩放
rotation z轴旋转
rotationX x轴旋转
rotationY y轴旋转
translationX x水平偏移
translationY y水平偏移
ScaleX x轴缩放
ScaleY y轴缩放
2016-01-13
动画方法第三种:PropertyValuesHolder p1 = PropertyValuesHolder.ofFloat("rotation" , 0 ,360F);
2016-01-13
Nice !!!有动画的效果了~~
ObjectAnimator.ofFloat(imageView ,"rotation" , 0F , 360F ).setDuration(1000).start();
ObjectAnimator.ofFloat(imageView ,"translationX" , 0F , 200F ).setDuration(1000).start();
ObjectAnimator.ofFloat(imageView ,"translationY" , 0F , 200F ).setDuration(1000).start();
ObjectAnimator.ofFloat(imageView ,"rotation" , 0F , 360F ).setDuration(1000).start();
ObjectAnimator.ofFloat(imageView ,"translationX" , 0F , 200F ).setDuration(1000).start();
ObjectAnimator.ofFloat(imageView ,"translationY" , 0F , 200F ).setDuration(1000).start();
2016-01-13