Reputation: 1
I want to handle touch event of five finger simultaneously on an android tablet. How can I do? Thanks for help.
Upvotes: 0
Views: 1036
Reputation: 3352
You can use MotionEvent.getPointerId() and MotionEvent.getPointerCount() to handle multi-touch events.
Upvotes: 0
Reputation: 13541
This is different per device. You have to test this functionality by using the Touch APIs that are available.
Upvotes: 3