vote up 12 vote down star
8

I'm not a usability specialist, and I really don't care to be one.

I just want a small set of rules of thumb that I can follow while coding my User Interfaces so that my product has decent usability.

At first I thought that this question would be easy to answer "Use your common sense", but if it's so common among us developers we wouldn't, as a group, have a reputation for our horrible interfaces.

Any Suggestions?

flag

12 Answers

vote up 8 vote down

Read Don't Make Me Think by Steve Krug. It is a great starting point, and an easy short read.

EDIT: This is mainly for web usability though, but it would still be a good read even if you are doing rich clients.

link|flag
Thank you. Read. – Allain Lalonde Sep 17 '08 at 19:07
vote up 5 vote down
  • Don't make things work in a different way than your users are expecting (i.e. breaking the "back" button when using Ajax in web forms
  • Follow the K.I.S.S principal

Really, any rules someone posts will be a variation on the theme: Don't Make Your Users Think

"Don't Make Me Think" has already been posted, see also Design of Everyday Things and Designing with Web Standards which are also great for light usability reading.

link|flag
vote up 4 vote down

The single most important piece of advice I'd give someone is to work on the UI first. Pen and paper and all. That way, you won't subconsciously couple buttons to functions, input fields to variables, etc.

The best UI might be a pain to code, and if your backend code is mostly written, it will sabotage your thinking.

Other than that, I'd point to Apple's Human Interface Guidelines. Of course, if your platform is not OSX, take the OSX sections with a lot of salt. What works in OSX might not work on Windows. You should embrace your platform's idioms.

OSX stuff aside, that document has some pretty good starting points on the fundamentals.

link|flag
vote up 15 vote down

alt text

link|flag
This doesn't actually answer the question. – Allain Lalonde Sep 17 '08 at 19:12
Yeah, I'm sorry. But you can get some lessons from it: try to make it simple - or as others say, make it Zen. Like Steve Krug said in his book: Don't make me think! – Marcio Aguiar Sep 18 '08 at 7:29
Now I feel guilty that it's on the top. haha :) – Marcio Aguiar Sep 18 '08 at 8:08
I think it's a pretty good answer. Make it as simple and intuitive as you possibly can, particularly for parts of the interface that users will interact with dozens of times per day. Save the scary forms for the administrators and the "once in a blue moon" functions. – CMPalmer Sep 23 '08 at 1:12
Actually, this answers the question very well. The point of the pictures is to say "Look at Apple and Google, who have very successfull products. Now look at the simplicity of their user interfaces and compare that with your own business application." Just because it's a line of business application doesn't mean it should have a simple, clean, easy-to-use interface. No, this answer doesn't give a set of rules to follow, other than "keep it simple", but it is still a good answer. – Scott Dorman Oct 10 at 2:57
vote up 2 vote down

I've posted related questions:

link|flag
vote up 2 vote down

Avoid modes. It's frustrating to a user when input works sometimes but not others, or does different things at different times.

link|flag
vote up 1 vote down

Think about the users that will use your app. Why are they using it and in which context?

  • Will the majority be pro users that know the domain in which the application is used and use the app a lot? Then don't be afraid of adding a lot of data to the screens as long as it arranged logically for users (normally that is not in alphabetical order :-). Think trade screens for stock borkers or airplane cockpits.
  • Are users occassional users? Keep it simple. Avoid context switches (keep all/as much as possible of necessary data for a task on the screen at each time). Don't break expectations of how gui widgets normally work. Design for failures.
  • Anything in between? Allow users to grow in the UI. Track usage so you can later determine where users seem to spend the most time so you can improve the most used areas of your app.
  • Test your app on friends and colleagues (the corridor test) to see if they are able to use it efficiently.

That's a start.

link|flag
vote up 4 vote down

Just two things, really:

  1. "A user interface is well-designed when the program behaves exactly how the user thought it would" - quoted from Joel Spolsky's User Interface Design For Programmers
  2. Put your designs in front of a user. A real end-user is best, but for lightweight, rapid feedback, you can't beat hallway usability testing i.e. grab a co-worker.

If you remember Joel's advice and make sure you get feedback on whatever you do and act on it i.e. iterate, you'll not go too far wrong. And I would echo the recommendation for Steve Krug's Don't Make Me Think - it's probably the best work-related book I've read, bar none, and is just as applicable to desktop software as websites.

Hope this helps.

link|flag
vote up 3 vote down

Here are some simple rules:

  • less clicks is better
  • frequently used features should be easier to find
  • features for "advanced" users can be harder to find than the ones above

Think about the number of mouse/keyboard clicks it takes a user to get to something.

PS - please don't tell the Office 2008 people about this, poor little guys would cry themselves to sleep tonight! :)

link|flag
vote up 1 vote down

I suggest to read these blog posts from the Enso creators.

Of course they repeat guides/ideas/advices from books such as
The Design of Everyday Things and About Face, but nevertheless, the posts contain quite a few insights and (IMO) they are a good read.

link|flag
vote up 0 vote down

What information does your user need, put that on the screen and nothing else. If you cannot define what the user needs - get another user.

link|flag
vote up 0 vote down

Remember that your application will be one of many the user will have to deal with. Don't do things just to be different or kewl. Don't come up with unusual graphics, behaviors, terminology, or interactions. Use the standard OS controls, conventions, utilities, and behaviors.

Let your app interoperate with other apps; allow cutting and pasting of data, save your data in formats other apps can read, and allow importing data from other apps instead of using your UI.

If you are making a desktop app, do not try to take over the user's computer. Leave the user's Documents folder, task bar, and application preferences alone. Don't change anything already installed on the computer. Allow scripted or command-line interactions.

If you're making a web app, do not try to take over the browser. Do not try to subvert the standard menu bars, history, layout, or fonts. Allow the user to change the page using Javascript.

link|flag

Your Answer

Get an OpenID
or

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