add PathInterpolator stub

This commit is contained in:
Mis012
2024-02-29 12:33:48 +01:00
parent c430344bd7
commit 60714ebf45
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package android.view.animation;
public abstract class BaseInterpolator implements Interpolator {
}

View File

@@ -0,0 +1,13 @@
package android.view.animation;
public class PathInterpolator extends BaseInterpolator {
public PathInterpolator(float f1, float f2, float f3, float f4) {
super();
}
@Override
public float getInterpolation(float input) {
return input;
}
}