SAVING SCREEN SPACE

Aus DPWiki - The Design Pattern Wiki

Wechseln zu: Navigation, Suche

Inhaltsverzeichnis

Illustration

Mobile devices all come with different screen sizes, formats and resolutions.  What they have in common, however, is their limited screen space.
vergrößern
Mobile devices all come with different screen sizes, formats and resolutions. What they have in common, however, is their limited screen space.

Context

…you want to design a MOBILE APPLICATION for a handheld device.

You think about which information and which elements are really necessary to be displayed and which are not.


Problem statement

One of the main limitations for user interface design of mobile applications is the small screen size and resolution of the devices. For this reason information and elements that will be displayed have to be well chosen. Which information and which objects should be displayed and which should be left out?


Problem description with forces

Desktop computers provide big displays with very high resolutions up to 1600x1200 pixels. For this reason there is enough screen real estate available to provide controls, explanations and additional information that are not needed all the time while still leaving enough screen space for users to work with an application.

The following screenshot of Microsoft Word 2002 illustrates this issue.

vergrößern

Although almost half of the screen is crammed with toolbars (which might become a different problem as it is hard to find a specific icon), there is still enough screen space left to work with the document.

Mobile devices on the other hand have some limitations that constrain what and how much information can be displayed on their screens: they provide only small displays with low screen resolutions and most of them differ in their screen formats (see opening picture).

Compared to desktop computers, designers of mobile applications have to cut back some elements and concentrate on the most important information to save screen space.

Examples

User interfaces for the miscellaneous operating systems on mobile devices include many different mechanisms for saving screen space by hiding controls, help texts or additional information that are infrequently used.

The Symbian UIQ user interface [1], for example, hides help texts behind a small help icon in the title bar of dialogs (similar to Palm OS).

vergrößern

Tapping the icon opens the help text in another dialog within the help application, and covers the current dialog.

In Microsoft Pocket PC [2] the start menu is hidden.

vergrößern
vergrößern

It can be accessed through the application title, located in the upper-left corner of the Pocket PC user interface.

Some applications also provide means for hiding elements such as toolbars. Sony Clié Paint on Palm OS for example provides full screen views of images without any further controls.

vergrößern
vergrößern

Only after the user taps on the image, a toolbar appears.

Solution

Therefore:

Hide all elements that

Persönliche Werkzeuge