I'm targeting Android with Titanium. How can I tell if a device has a touch screen or not?
|
|
|
The easiest way is to test for touch event support. If they are supported, likely the device has a touch screen. If not, it probably doesn't or you can't use them anyway. One solution is:
But be careful as the browser may support touch events but the device might not (e.g. Chrome 20 supports lots of touch events in devices that don't have touch). You may be able to get users to click a button and see if a touch event is dispatched or just a click. |
|||||||||||
|
|
This is the solution I came up with. It's really stupid, but it works. Wherever you create your application window, add this code:
Replace Later on, check that touch is present with this:
If you are testing this on an emulator, the property might persist even when you change "devices". So add this line before anything else:
|
||||
|
|