pointerIndex out of range Android multitouch

My problem was that it was actually calling event.getX(1) when there wasn’t actually two ids. So I made sure that there were two ids with event.getPointerCount() >= 2 and it now works. Maybe you’ll have the same luck!

Leave a Comment