Got multi-touch working
in
Android Processing
•
2 years ago
Was easier than I expected it to be based on what the wiki has to say about it ;)
It may not be as 'robust' as other implementations, but it will definitely track multiple points on the screen at once. I've got code and examples over on my blog:
http://www.akeric.com/blog/?p=1411
I override the parent Activity's
It may not be as 'robust' as other implementations, but it will definitely track multiple points on the screen at once. I've got code and examples over on my blog:
http://www.akeric.com/blog/?p=1411
I override the parent Activity's
dispatchTouchEvent method Processing's surfaceTouchEvent and capture the passed in MotionEvent object, which has all different kinds of goodness letting you know what is going on when the user is touching the hardware.