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
This makes AnimatedVectorDrawableCompat from androidx functional and probably also helps other animation stuff.
12 lines
289 B
Java
12 lines
289 B
Java
package android.view;
|
|
|
|
import android.animation.Animator;
|
|
import android.animation.ValueAnimator;
|
|
|
|
public class ViewAnimationUtils {
|
|
|
|
public static Animator createCircularReveal(View view, int centerX, int centerY, float startRadius, float endRadius) {
|
|
return new ValueAnimator();
|
|
}
|
|
}
|