3

Many apps on my phone, especially browsers, have awful touch accuracy. I wondering whether touch accuracy was based more on the design of the app, or the hardware of the phone. Some apps work better than others, but I also found that some phones had better touch accuracy for the same kinds of apps.

Does touch accuracy depend more on the phone's hardware than the design of an app?

eldarerathis
  • 36,787
  • 16
  • 144
  • 175
Zolani13
  • 153
  • 4
  • I'd say both and which of software or hardware is more important depends on the type of input. Back in the Nexus One days, some apps (most notably keyboards) tried to compensate for its lack of true multi touch, with mixed success. – ctt Apr 21 '12 at 05:59

1 Answers1

5

Well the hardware needs to be properly aligned, so that where it senses your touch matches up with what you see yourself touching.

There are also general algorithms the system applies to make decisions about where the center of your touch is, since your finger is not a perfect point, and so on.

Finally, and app needs to decide what to do with a touch. When an app uses simple widgets like buttons it's fairly simple to map the touch position to a widget. In the browser, however, it's much more difficult. Determining the position of a control rendered dynamically via HTML (and JavaScript etc.) is a fairly complex task. You'll find that most touch browsers, even on other platforms, have varying levels of difficulty with touch accuracy.

So it depends on both hardware and software, but the variance you're seeing between apps is probably all due to the apps.

Matthew Read
  • 50,567
  • 30
  • 145
  • 273