Files
android_translation_layer/src/api-impl/android/view/VelocityTracker.java

21 lines
453 B
Java
Raw Normal View History

2023-09-19 23:22:21 +02:00
package android.view;
public class VelocityTracker {
public static VelocityTracker obtain() {
return new VelocityTracker();
}
2023-10-08 17:51:41 +02:00
public void addMovement(MotionEvent event) {}
public void recycle() {}
public void computeCurrentVelocity(int units, float maxVelocity) {}
public void computeCurrentVelocity(int units) {}
public float getXVelocity(int id) {return 0.f;}
public float getYVelocity(int id) {return 0.f;}
public void clear() {}
2023-09-19 23:22:21 +02:00
}