Hacker News new | ask | show | jobs
by jessegavin 5216 days ago
I LOVE the points made in this post. I would two other observations:

1) Make sure your app has lightening fast response for touch events. Kids are smart, they expect that when they click a button, something should happen. If it takes over 250ms, my kid thinks it's broke and will start clicking it repeatedly.

2) Always use "onTouchDown" instead of "onTouchUp" when handling simple presses. My kid doesn't always release his finger after touching a button and when nothing happens, he thinks he needs to touch the button repeatedly. If the developers targeted the "Touch Down" event instead of "Touch Up" my kid wouldn't have learned this behavior.