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
implement some APIs needed for OctoDroid
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package android.animation;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public class AnimatorSet extends Animator {
|
||||
|
||||
public class Builder {
|
||||
@@ -17,4 +19,14 @@ public class AnimatorSet extends Animator {
|
||||
|
||||
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) {}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user