Touchscreens are absolute; trackpads are relative
Aliases: touchscreen · trackpad · touchpad · absolute versus relative
What it is
An ordinary touchscreen maps a contact coordinate to a location on that same display, making it absolute. A trackpad usually reports finger displacement on the pad and moves a separate screen cursor, making it relative. These are default interaction semantics, not consequences of both devices using fingers. Particular trackpad modes and remote-touch implementations can change the mapping without changing how the distinction is made.
Why it happens
Touch puts movement endpoint and target together, so contact can immediately establish selection. A trackpad exchanges a small surface for whole-screen reach, using a cursor, gain, and clutching for long travel. The former reduces cursor finding but suffers from finger size and occlusion; the latter leaves the display unobscured and limits hand travel but requires visual cursor tracking. The difference comes from mapping and feedback, not simply from whether a screen is touchable.
Studying it
Use the same display, targets, and tasks for both devices, measuring acquisition, dragging, text selection, and prolonged fatigue. Alongside time and errors, record cursor search, retries caused by finger occlusion, and clutch count. Treating a touchscreen's visual region as identical to a trackpad cursor's hit region biases the comparison.
Where it stops holding
Reaching on a large touchscreen can cost more effort than using a trackpad, while dense targets on a small phone can make touch less precise than a cursor. Direct-feeling multi-finger trackpad scrolling and zooming are still not absolute endpoint input. External displays, screen mirroring, and accessibility features can also break the expectation that touching means acting exactly where seen.
Applying it
- Tailor targets and feedback to each device: address occlusion and contact error for touch, and keep cursor, hover, and clutching available for trackpads.
- Do not define critical actions through one generic “finger input” path; give precise touch work magnification or an equivalent alternative.
- Validate high-frequency tasks separately on touchscreen, trackpad, and external mouse, checking for a step possible under only one mapping.
Related
- Same group: C1.02.1 Absolute positioning: a one-to-one relation between device and display space · C1.02.2 Relative positioning: transmitting displacement increments rather than position · C1.02.3 Absolute positioning removes visual search for the cursor · C1.02.4 Relative positioning permits clutching beyond physical bounds
- Nearby: C1.01 Types and properties of pointing devices · C1.06 Hover states and their absence on touchscreens
- Search terms:
touchscreen·trackpad·absolute relative mapping
Cards in the same group
- C1.02.1Absolute positioning: a one-to-one relation between device and display space
- C1.02.2Relative positioning: transmitting displacement increments rather than position
- C1.02.3Absolute positioning removes visual search for the cursor
- C1.02.4Relative positioning permits clutching beyond physical bounds