vote up 7 vote down star
5

A while back I read (before I lost it) a great book called GUI Bloopers which was full of examples of bad GUI design but also full of useful tidbits like Don't call something a Dialog one minute and a Popup the next.

What top tips would you give for designing/documenting a GUI? It would be particularly useful to hear about widgets you designed to cram readable information into as little screen real-estate as possible.

I'm going to roll this off with one of my own: avoid trees (e.g. Swing's JTree) unless you really can't avoid it, or have a unbounded hierarchy of stuff. I have found that users don't find them intuitive and they are hard to navigate and filter.

PS. I think this question differs from this one as I'm asking for generalist tips

flag

8 Answers

vote up 7 vote down check

well I personally follow these simple rules:

  • be consistent throughout the application DO NOT CHANGE BEHAVIOUR/LAYOUT
  • information flow: from top to bottom from left to right (in western-countries)
  • not too much info on a page (like a ppt-presentation)
  • big letters (so old people can read them too)
  • KISS (whoever can use a videorecorder can use this page/form/etc.)
  • use relaxing colors like blue, green, etc. (not bright-red or neon-pink)
  • Structure (can change of course but as a first draft mostly it is):
    • top -> navigation/menu
    • left -> navigation/info
    • middle -> content
    • bottom -> status
    • bottom right -> buttons
link|flag
Unless there are no system facilities for managing font sizes on your target platform, I would discourage using "big letters" without a good reason. – Steve S Feb 17 at 15:17
vote up 2 vote down

See earlier question: UI design books/resources for programmers.

link|flag
vote up 1 vote down

I don't think that it's possible, in this little space, to give tips which would make it possible to design good GUIs (the question is as big as "how can I write good programs?"). But I can give pointers to some helpful books: The Design of Everyday Things, About Face, User Interface Design: A Software Engineering Perspective, Usability Engineering.

link|flag
I'm not sure I agree with you. There are loads of tips which can help. The Dialog/Popup advice opened my eyes to aspect of design that hadn't occurred to me. The more tips the better – oxbow_lakes Feb 17 at 12:30
vote up 2 vote down

My top tip would be From a GUI developer's perspective

Keep it thin and simple

If you mean from a usability perspective

Show it to the actual user as soon as possible and refine based on feedback

link|flag
vote up 2 vote down

Once you have completed the design: Have a few people sit down in front of your software and let them try to solve a task that your software was designed for (one by one, not all at once...). It's absolutely amazing what you will learn just by watching them.

If possible, the testers should match the profile for your typical customer group. The more people you can find for this kind of usability testing the better, but even watching just a handful of people per product iteration has been very useful for me in the past.

link|flag
vote up 3 vote down

To address your issue with JTree (which I agree with), you should look into using glazed lists if you want nice JList and JTable interaction in your app: http://publicobject.com/glazedlists/

You get a lot of functionality (sortable table headers, e.g) with a few tweaks to your code.

Aside from that, keep it simple.

link|flag
It seems like lots of functionality provided by glazed lists is now in the JDK (since 1.6) with the RowSorter and filter classes. – oxbow_lakes Feb 21 at 10:41
vote up 2 vote down

Do not change default colors. It is important for people who is colorblind.

link|flag
vote up 4 vote down

Just one rather concrete tip I got once from a skillful GUI techlead:

When you have a dialog/form with buttons, text fields, lists etc, try to keep the space between them consistent and symetric. For instance, try using the same distance between widgets in all directions, and if a group of widgets is separated from another by increasing the space between the groups, try to make that space a duplicate of the space between the controls within the groups. For example if all buttons in one section are separated by 16 pixels in all directions, try making the larger space to the next group 32, 64, 128 or so pixels.

It's much more comfortable for the human eye to interpret something which is bound to a distinct symmetry.

Ever since I tried it I always use this method with very nice results. I even went back and reworked older GUIs and was surprised to see such a facelift from this adjustment only.

EDIT:

Forgot to mention an important lesson I learned from the above method:

When you arrange all widgets according to this system (in particular when reworking old cluttered GUIs) you might run out of space, and your dialog needs to be inflated. At some point one can feel that the dialog is getting too large (e.g. blocking related background GUI or related widgets ending up too far from eachother). That might be a good indicator that you maybe should split the dialog into tabs, move things into the menu or just making it into a wizard-style concept etc.

This is pretty unrelated to widget spacing but touches the subject of less-is-more for the user to interact with at any given time. It's interesting that when you start making things right it "ripples the water" and sometimes forces you to make more things right (kind of like fixing const correctness :p ).

link|flag
Absolutely. Widget alignment is another (related) area where a little bit of work goes a long way. These two details can make an app far more professional looking, and they're good for usability too. – Steve S Feb 17 at 21:30
This is where the choice of the "right" LayoutManager stands! Of couse you don't want to use hard-coded XYWH! Some LayoutManagers will have automatic alignment, some others won't. – jfpoilpret Feb 18 at 3:27
Another point is that inter-component spacing is generally platform-dependent (different on XP and MacOS). In Java 6, there is support for that and modern PLAF support that. Once again, you have to use a LayoutManager that can use this information. – jfpoilpret Feb 18 at 3:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.