在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();