Initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.google.android.material.animation;
|
||||
|
||||
import android.animation.Animator;
|
||||
import android.animation.AnimatorSet;
|
||||
import android.animation.ValueAnimator;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class AnimatorSetCompat {
|
||||
public static void a(AnimatorSet animatorSet, List<Animator> list) {
|
||||
int size = list.size();
|
||||
long j = 0;
|
||||
for (int i = 0; i < size; i++) {
|
||||
Animator animator = list.get(i);
|
||||
j = Math.max(j, animator.getStartDelay() + animator.getDuration());
|
||||
}
|
||||
ValueAnimator ofInt = ValueAnimator.ofInt(0, 0);
|
||||
ofInt.setDuration(j);
|
||||
list.add(0, ofInt);
|
||||
animatorSet.playTogether(list);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user