ObjectAnimator常用设置view效果

学习自guolin的博文,作学习笔记
淡入淡出
ObjectAnimator.ofFloat(textview, "alpha", 1f, 0f, 1f);
旋转
ObjectAnimator.ofFloat(textview, "rotation", 0f, 360f);

位置移动
【ObjectAnimator常用设置view效果】ObjectAnimator.ofFloat(textview, "translationX", curTranslationX, -500f, curTranslationX);

放大缩小
ObjectAnimator.ofFloat(textview, "scaleY", 1f, 3f, 1f);



    推荐阅读