11

Bizarrely, the iPad can handle up to 11 points of contact on the touch screen and interpret them successfully, leading to some interesting games.

Reference: http://www.liewcf.com/ipad-tablet-multitouch-fingers-5202/

Android devices don't have a unified limit on how many fingers they track. Instead, it varies from device to device and can be anything from two-touch on older devices to five fingers on some newer devices.

Any theories, however clever, on how one might fudge extra fingers on the Android?

Mark Mayo
  • 12,230
  • 12
  • 54
  • 85
  • 1
    One-touch on older devices. The original Sony-Ericsson Xperia X10, which came with Android 1.6 and later Android 2.1, had one-touch. – Prof. Falken Oct 16 '12 at 11:26

3 Answers3

3

The SDK allows for the query of any number of inputs (up to the largest value an int can hold) so any limitations would purely what the manufacturer implemented on the hardware/os end. In most cases for high end phones, it is most likely an OS limitation since touch sensors like the maXTouch in the Incredible and Evo have no limit. The NDK did add support for touchscreen input in the Gingerbread release so there may be a way to do this without custom roms. On a side note, if you need that many points, you can add the tag in the Manifest to limit your app to devices that support five or more with the android.hardware.touchscreen.multitouch.jazzhand feature tag.

Andy McSherry
  • 4,676
  • 3
  • 26
  • 36
2

It should depend on the hardware design.
Look this patent by Apple: Apple Wins Patents for iPad Dock, MacBook Air & Multi-Touch
It explains (a little) the multitouch processing for iPhone/iPad.

hippietrail
  • 15,848
  • 18
  • 99
  • 158
Benoît
  • 7,395
  • 2
  • 25
  • 30
  • It is hardware problem. As there is lot of Android phone from different brand, they have not the same technology/patent – Benoît Dec 09 '10 at 16:19
1

I highly doubt you will be able to track extra touch points on Android using the SDK, maybe, just maybe the NDK has the ability, but im almost sure you require customs roms.

blindstuff
  • 18,298
  • 10
  • 47
  • 48