If there are multiple fingers on the device, does the onTouch-listener run once for every finger, or it runs once per event(finger down, move, etc..) and include every active touch pointer?
And if
(e.getAction() & MotionEvent.ACTION_MASK == MotionEvent.ACTION_MOVE)
how do I know which pointer is moving currently?
final int pointerIndex = e.getActionIndex();
pointerID = e.getPointerId(pointerIndex);
Always gives back 0(while MotionEvent.ACTION_MOVE) for some reason..
