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
Directly calling onAnimationEnd() skips the animation and directly sets the target values
12 lines
285 B
Java
12 lines
285 B
Java
package android.view.animation;
|
|
|
|
import android.content.Context;
|
|
|
|
public class AnimationUtils {
|
|
public static Animation loadAnimation(Context context, int dummy) { return new Animation(); }
|
|
|
|
public static long currentAnimationTimeMillis() {
|
|
return System.currentTimeMillis();
|
|
}
|
|
}
|