Android-nineoldandroids框架的使用(二)

组合动画的一般用法

同时进行:

ObjectAnimator animator = ObjectAnimator.ofFloat(button,"rotationY",180);
ObjectAnimator animator2 = ObjectAnimator.ofFloat(button,"translationY",500);
AnimatorSet set = new AnimatorSet();
// 同时进行animator动画和animator2动画
set.playTogether(animator,animator2); // 等同于 set.play(animator).with(animator2);
set.setDuration(5000);
set.start();
顺序进行:

ObjectAnimator animator = ObjectAnimator.ofFloat(button,"rotationY",180);
ObjectAnimator animator2 = ObjectAnimator.ofFloat(button,"translationY",500);
AnimatorSet set = new AnimatorSet();
// 先执行animator动画,animator动画结束后再执行animator2动画
set.playSequentially(animator,animator2); // 等同于set.play(animator).before(animator2);
set.setDuration(5000);
set.start();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值