Single finger swipe

This commit is contained in:
M66B 2019-10-05 11:57:37 +02:00
parent 7cfb16b08d
commit ad9199df68
1 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,8 @@ public class SwipeListener implements View.OnTouchListener {
public boolean onFling(MotionEvent me1, MotionEvent me2, float vx, float vy) {
if (me1 == null || me2 == null)
return false;
if (me1.getPointerCount() > 1 || me2.getPointerCount() > 1)
return false;
boolean consumed = false;
int dx = Math.round(me2.getX() - me1.getX());