2023-08-22 14:41:01 +02:00
|
|
|
package android.animation;
|
|
|
|
|
|
2024-12-13 16:25:07 +01:00
|
|
|
import java.util.ArrayList;
|
2024-03-29 23:56:28 +01:00
|
|
|
import java.util.Collection;
|
|
|
|
|
|
2023-08-22 14:41:01 +02:00
|
|
|
public class AnimatorSet extends Animator {
|
|
|
|
|
|
2024-03-16 12:49:28 +01:00
|
|
|
public class Builder {
|
|
|
|
|
|
|
|
|
|
public Builder with(Animator animator) {
|
|
|
|
|
return this;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Builder play(Animator animator) {
|
|
|
|
|
return new Builder();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setInterpolator(TimeInterpolator value) {}
|
|
|
|
|
|
|
|
|
|
public void playSequentially(Animator[] animators) {}
|
|
|
|
|
|
2024-03-29 23:56:28 +01:00
|
|
|
public boolean isStarted() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void playTogether(Collection<Animator> animators) {}
|
|
|
|
|
|
|
|
|
|
public AnimatorSet setDuration(long duration) { return this; }
|
|
|
|
|
|
|
|
|
|
public void playTogether(Animator[] animators) {}
|
|
|
|
|
|
2024-12-13 16:25:07 +01:00
|
|
|
public ArrayList<Animator> getChildAnimations() {
|
|
|
|
|
return new ArrayList<Animator>(0);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 14:41:01 +02:00
|
|
|
}
|