0

I want to know if it is possible to make an android application that features up to 6 touches simultaneously with the multi-touch option (not just two). Please can u help me to find some relevant literature. I've found some answers here on stackoverflow, but i am afraid that that's not enough.

I would appreciate every help. Thank you all in advance.

Aksiom
  • 1,565
  • 4
  • 25
  • 39

2 Answers2

3

Devices that support "jazzhands" will handle up to 10 simultaneous touches. Your app can require jazzhands support via the following manifest element:

<uses-feature android:name="android.hardware.touchscreen.multitouch.jazzhand" />

Not all devices will support this -- for example, the Kindle Fire only supports two simultaneous touches IIRC.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491
1

There is no software difference between 2 or 6 touches (except for the permission), it is hardware related and if you can't use more of 2 fingers then you should try on another device.

Anyway, if you want good multitouch litterature, have a look here:

Making sense of multitouch (android-developers.blogspot.fr)

floribon
  • 19,175
  • 5
  • 54
  • 66