android属性动画使用
程序员文章站
2022-05-03 23:50:09
...
ObjectAnimator objectAnimator = ObjectAnimator.ofFloat(mImageView,"translationY",
0,view.getWidth());
objectAnimator.setDuration(3000);
// objectAnimator.start();
ObjectAnimator objectAnimator2 = ObjectAnimator.ofFloat(mImageView,"translationX",
0,view.getWidth());
objectAnimator2.setDuration(3000);
// objectAnimator.start();
AnimatorSet set = new AnimatorSet();
set.playTogether(objectAnimator,objectAnimator2);
set.start();
上一篇: 日期转换:年、季度、月份