You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
33 lines
609 B
Java
33 lines
609 B
Java
package android.animation;
|
|
|
|
import java.util.Collection;
|
|
|
|
public class AnimatorSet extends Animator {
|
|
|
|
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) {}
|
|
|
|
public boolean isStarted() {
|
|
return false;
|
|
}
|
|
|
|
public void playTogether(Collection<Animator> animators) {}
|
|
|
|
public AnimatorSet setDuration(long duration) { return this; }
|
|
|
|
public void playTogether(Animator[] animators) {}
|
|
|
|
}
|