enable onTouchEvent for ViewGroups and add some stubs

This commit is contained in:
Julian Winkler
2023-10-30 22:35:31 +01:00
parent 065fd96308
commit 3de842b1d8
9 changed files with 24 additions and 2 deletions

View File

@@ -9,4 +9,11 @@ public class VelocityTracker {
public void addMovement(MotionEvent event) {}
public void recycle() {}
public void computeCurrentVelocity(int units, float maxVelocity) {}
public float getXVelocity(int id) {return 0.f;}
public float getYVelocity(int id) {return 0.f;}
public void clear() {}
}