How can I verify, that device support multitouch event? If device have resistent display, multitouch is not possible. Is that way to find out, what kind of display is in device, or if device support multitouch?
Thanks.
|
How can I verify, that device support multitouch event? If device have resistent display, multitouch is not possible. Is that way to find out, what kind of display is in device, or if device support multitouch? Thanks. |
|||
|
|
|
If you need multitouch, include:
in your manifest. Your application will not be listed in the Market for devices that lack multitouch. If you wish to conditionally support multitouch, use |
|||||||||
|
|
You can use PackageManager.hasSystemFeature with PackageManager.FEATURE_TOUCHSCREEN_MULTITOUCH There is an interesting series of articles on Android multi-touch that are worth a look Hope this helps, Phil Lello |
|||
|
|
|
A quick example:
|
||||
|
|