Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I make sure that all developers in a team create a uniform user experience? [closed]

In our development team we create many small applications, all targeted at a very specific needs of our customers.

Therefore we often have problems with creating a uniform user experience regarding:

  • Choice of icons (GUI)
  • Naming of configuration files
  • Naming of configuration options
  • GUI language (as in "formal or less formal" or "for novice/advanced users")
  • Choice of names/titles
  • General GUI layouts
  • ...

I can think of several approaches to these problems...

  • Create very detailed written guidelines
  • Discuss everything
  • Let one developer decide everything
  • ...

What's the best way to achive a cohesive user experience or uniform results in general? Personally I don't like any of my approaches, but perhaps that's a misconception, so feel free to support them :)

like image 297
Daniel Rikowski Avatar asked Apr 21 '09 10:04

Daniel Rikowski


2 Answers

I've had several positions where I've had complete ownership of the GUI. This involved me doing all designs/mockups and also supervised the use case writing to make sure it was all consistent. This is by far the best approach to ensure consistency, but it might not always be the most practical one.

Alternatives would be to write guidelines, but this is not really the same thing as having a good GUI design knowledge/HCI skills. At least it can teach developers to use custom libraries/components that your company might have.

A must is a dictionary that contains the domain language your ase using and how it should be used in the GUI. This is one of the most important things that a lead gui developer needs to do.

At the very least you should make sure that you review anything that is done by other developers unlessy you know and trust them to do the right thing. GUI design is often a vastly under estimated skill and it is important to remember that not everyone can do it without proper training.

like image 134
willcodejavaforfood Avatar answered Sep 21 '22 21:09

willcodejavaforfood


Extensive guidelines and reviews by a "technical lead", a "design lead" and/or QA.

Make the guidelines "dynamic" and keep them accurate and up to date, in our company we use a Wiki for such collaboration tasks.

like image 37
Lucero Avatar answered Sep 22 '22 21:09

Lucero