Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is UI programming so time consuming, and what can you do to mitigate this? [closed]

In my experience, UI programming is very time consuming, expensive (designers, graphics, etc) and error prone - and by definition UI bugs or glitches are very visible embarasing.

What do you do to mitigate this problem?

Do you know of a solution that can automatically convert an API to a user interface (preferably a Web user interface?).

Probably something like a JMX console

  • with good defaults
  • can be tweaked with css
  • where fields can be configured to be radio button or drop down list, text field or text area, etc
  • localizable
  • etc
like image 354
flybywire Avatar asked Apr 14 '09 06:04

flybywire


People also ask

Is UI design time consuming?

Developing UI is time consuming and error-prone because it involves design. Not just visual or sound design, but more importantly interaction design. A good API is always interaction model neutral, meaning it puts minimal constraints on actual workflow, localisation and info representation.

Why is UI design so hard?

Good UI design is hard because it involves 2 vastly different skills: A deep understanding of the machine. People in this group worry about code first, people second. They have deep technological knowledge and skill.

Why is UI so important?

Why is user interface important? User interface is important to meet user expectations and support the effective functionality of your site. A well-executed user interface facilitates effective interaction between the user and the program, app or machine through contrasting visuals, clean design and responsiveness.


2 Answers

Developing UI is time consuming and error-prone because it involves design. Not just visual or sound design, but more importantly interaction design. A good API is always interaction model neutral, meaning it puts minimal constraints on actual workflow, localisation and info representation. The main driver behind this is encapsulation and code re-use.

As a result it is impossible to extract enough information from API alone to construct a good user interface tailored to a specific case of API use.

However there are UI generators that normally produce CRUD screens based on a given API. Needless to say that such generated UI's are not very well-suited for frequent users with demands for higher UI efficiency, nor are they particularly easy to learn in case of a larger system since they don't really communicate system image or interaction sequence well.

It takes a lot of effort to create a good UI because it needs to be designed according to specific user needs and not because of some mundane API-UI conversion task that can be fully automated.

To speed the process of building UI up and mitigate risks it is possible to suggest either involving UI professionals or learning more about the job yourself. Unfortunatelly, there is no shortcut or magic wand, so to speak that will produce a quality UI based entirely and only on an API without lots of additional info and analysis.

Please also see an excellent question: "Why is good UI design so hard for some developers?" that has some very insightful and valuable answers, specifically:

  • Shameless plug for my own answer.

  • Great answer by Karl Fast.

like image 155
Vlad Gudim Avatar answered Sep 21 '22 13:09

Vlad Gudim


I don't believe UI programming is more time consuming than any other sort of programming, nor is it more error prone. However, bugs in the UI are often more obvious. Spotting an error in a compiler is often much more tricky.

One clear difference between UI programming is that you have a person at the other end, instead of another program, which is very often the case when you're writing compilers, protocol parsers, debuggers, and other code which talks to other programs and computers. This means that the entity you're communicating with is not well-specified and may behave very erratically.

EDIT: "unpredictable" is probably a more appropriate term. /Jesper

Your question of converting an API to a user interface just doesn't make sense to me. What are you talking about?

like image 27
JesperE Avatar answered Sep 22 '22 13:09

JesperE