Giancarlo Figlia
Giancarlo Figlia

Reputation: 1

How many fingers touch can be handle simultaneously in android os?

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

Answers (3)

Martin Majer
Martin Majer

Reputation: 3352

You can use MotionEvent.getPointerId() and MotionEvent.getPointerCount() to handle multi-touch events.

Upvotes: 0

NermaN
NermaN

Reputation: 185

Usually - 10, depends on device and drivers.

Upvotes: 0

jtt
jtt

Reputation: 13541

This is different per device. You have to test this functionality by using the Touch APIs that are available.

Upvotes: 3

Related Questions