Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm targeting Android with Titanium. How can I tell if a device has a touch screen or not?

share|improve this question

2 Answers

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:

var touchSupported = ('ontouchstart' in window);

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.

share|improve this answer
Unfortunately, this didn't work. I should mention that Titanium doesn't use "standard" event names. Thank you anyway, though. – SimpleCoder Aug 14 '12 at 16:08
How about the "get the user to click a button" idea? – RobG Aug 15 '12 at 3:25
I did think about that, but I found a way to do it transparently (my answer). – SimpleCoder Aug 15 '12 at 15:10
That's great! Probably should test for touch event support before attaching the listener though. – RobG Aug 17 '12 at 2:13
I found that the listener always exists (it hasn't thrown an exception yet on a non-touch device). It just doesn't fire if touch support isn't there. Yeah, I know: Titanium has a wonky API – SimpleCoder Aug 17 '12 at 2:18
up vote 0 down vote accepted

This is the solution I came up with. It's really stupid, but it works. Wherever you create your application window, add this code:

function touchStart(){
    Titanium.App.Properties.setBool("touch", true);

    self.removeEventListener("touchstart", touchStart);
}

self.addEventListener("touchstart", touchStart);

Replace self with the name of your window. Now, the first time a touch event is detected, an application property will be set.

Later on, check that touch is present with this:

var touchSupported = Titanium.App.Properties.getBool("touch", false);

If you are testing this on an emulator, the property might persist even when you change "devices". So add this line before anything else:

Titanium.App.Properties.setBool("touch", false);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.