Android中如何同时播放多个动画

avatar
作者
猴君
阅读量:0

在Android中可以使用AnimatorSet来同时播放多个动画。

首先,创建需要同时播放的动画对象,例如ObjectAnimator、ValueAnimator等。

然后,创建AnimatorSet对象,并使用playTogether()方法将需要同时播放的动画添加到AnimatorSet中。

最后,调用AnimatorSet的start()方法开始播放动画。

示例代码如下:

ObjectAnimator scaleXAnim = ObjectAnimator.ofFloat(view, "scaleX", 0.5f, 1.0f); ObjectAnimator scaleYAnim = ObjectAnimator.ofFloat(view, "scaleY", 0.5f, 1.0f);  AnimatorSet animatorSet = new AnimatorSet(); animatorSet.playTogether(scaleXAnim, scaleYAnim); animatorSet.start(); 

    广告一刻

    为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!