Touch versus pointer
Apple versus Microsoft (Windows 8):- Apple. Right: “People don’t touch their desktop screens”. Wrong: You must touch your screen when using your iPad with a Bluetooth keyboard.
- Microsoft. Right: Support both touch and pointer modes. Wrong: “People will want to use touch everywhere”.
Phone versus tablet versus desktop
Apple versus Microsoft:- Apple: Right: Tablet user interfaces must be simpler than desktop user interfaces. Wrong: You need to completely reimplement a the user interface when going from phone to tablet to desktop.
- Microsoft: Right: Striving for reduced complexity makes sense on desktops (and not just on tablets). Wrong: People want the complete desktop experience on a tablet.
- Small (cell phones): minimal complexity, support the most obvious operations.
- Medium (tablets): moderate complexity, support 80% of the operations that users need.
- Large (desktops, notebooks): high complexity, support all conceivable operations.
How to implement cross-level user interfaces. That is a tricky one. Note that desktops can profit from a “simple mode” (tablet-like). Optionally, one switches to a an “advanced mode”. If we can figure out how to do that properly then my preferred solution would be to start with a simple mode and incrementally expose advanced features, on demand. Ideas for user interfaces that adapt their complexity to the current screen size are already out there:
- Enyo allows webOS apps to scale their UIs.
- Fragments are a mechanism in Android for splitting up a user interface so that the single fragments fit on cell phone screens, while multiple fragments can be shown on tablets.
Outlook
A few more thoughts:- This post ignored “couch user interfaces” [1] where your screen is much farther away and you often have a remote control.
- Two means of input were also completely ignored: gestures (Kinect) and voice (Siri). These have many applications, especially for couch user interfaces.
1 comment:
It has been a while since this post, but I'd like to share how Android handles it.
I own Asus Transformer tablet that can be docked into a keyboard (with touchpad).
The screen itself is always in a "touch mode", so you can use your fingers whenever you feel comfortable.
But when using a touchpad on the keyboard the 'touch cursor' appears - a circle that shows you current position of your virtual finger.
Touchpad is also multitouch, so it shows you two 'fingers' on screen.
Additionally you can attach a mouse via usb or bluetooth - in this case you will be shown with quite normal arrow cursor.
So this support is really awesome, and it seems that it's exactly what you'd like to have on iPad.
I'm not sure if it is a default behaviour of Android itself or are these some Asus additioins for Transformer.
Post a Comment