A tap is a brief contact whose press and lift stay in place
Aliases: single tap · touch tap · press and release
What it is
A tap is the basic discrete selection on a touchscreen: a finger lands on a target and lifts in nearly the same place, too briefly to count as holding. The unit is not the physical event of touching glass; it is a completed down–up pair. A slide, a dwell, or a second knock can start from the same contact. A tap is the contact that neither walks away nor stretches into a hold.
Why it happens
A capacitive panel reports contact appearing and vanishing; it has no mouse-like hover state of its own. When people point at an object they aim the fingertip and leave, rather than dragging. The system therefore interprets a short, stationary contact after the fact as selection intent: only at lift does it know the contact was a tap. If the lift site leaves the down site, the same contact looks like a drag or a slide-off cancel. If contact persists, a duration channel takes over. A tap is a classification, not an atomic sensor event.
Studying it
Log timestamps and coordinates for touch down, move, and up, then label contacts as tap, drag, or hold. Independent variables include target size, grip, screen tilt, and whether small jitter is tolerated; dependent measures include the share classified as taps, false taps at the start of a scroll, and the time cost of committing on lift versus on down. Isolated high-contrast buttons overstate tap cleanliness relative to lists and icon grids, where the finger often carries a little motion. High-speed video or finger-to-pixel timing separates sensing delay from classification delay.
Where it stops holding
Gloves, wet skin, or a screen film enlarge the contact patch and make lift edges sticky, so the path is no longer “almost still.” A stylus lands closer to a geometric point and separates tap from drag more cleanly; a finger always trembles by a few pixels. Controls that fire on touch-down, as in some games, have already left the “selection completes on lift” definition. When two fingers land nearly together, the single-contact premise fails.
Applying it
- Make open, select, and toggle into lift-committed taps; do not treat “finger touched” as the default trigger.
- Allow physiologic jitter during contact, but stop classifying as a tap once motion is clearly a translation.
- Record three clips: a still tap, a tap with a little carry, and a press that slides off after a change of mind. Check whether lift commits, and whether it commits the object that was under the finger at down.