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
without native libs present, launches and renders white square in map view; with native libs present, segfaults in bundled skia
37 lines
1006 B
Java
37 lines
1006 B
Java
package android.animation;
|
|
|
|
import android.graphics.Path;
|
|
import android.util.Property;
|
|
|
|
public class ObjectAnimator extends ValueAnimator {
|
|
|
|
public String getPropertyName() {
|
|
return null;
|
|
}
|
|
|
|
public static ObjectAnimator ofFloat(Object target, String xPropertyName, String yPropertyName, Path path) {
|
|
return new ObjectAnimator();
|
|
}
|
|
|
|
public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> xProperty, Property<T, Float> yProperty, Path path) {
|
|
return new ObjectAnimator();
|
|
}
|
|
|
|
public static <T> ObjectAnimator ofFloat(T target, Property<T, Float> property, float... values) {
|
|
return new ObjectAnimator();
|
|
}
|
|
|
|
public static ObjectAnimator ofFloat(Object target, String propertyName, float... values) {
|
|
return new ObjectAnimator();
|
|
}
|
|
|
|
public static <T> ObjectAnimator ofInt(T target, String propertyName, int... values) {
|
|
return new ObjectAnimator();
|
|
}
|
|
|
|
public ObjectAnimator setDuration(long duration) {return this;}
|
|
|
|
public void setAutoCancel(boolean autoCancel) {}
|
|
|
|
}
|