Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
319 views

UI Usability book for developer

Being mostly a software developer I find that the hardest thing for me is to produce usable user-interface. I did read some books, including The Smashing Book and Web Design For Developers. But those ...
3
votes
1answer
140 views

MVC: User Message Stack implementations

How would you implement a user message stack in ASP.Net MVC? (you set messages for the user in any place inside your app. and they are shown as hints of your app to the user anywhere inside the app) ...
3
votes
3answers
1k views

UI design pattern for multi level grid

currently I have a requirement to display related items in a multi level grid. that is great grandparent -> grandparent-> parent-> child For example: Country-> state->City->Street is the order of ...
2
votes
3answers
373 views

What's the name of this UI pattern?

Sometimes when some feature requires many different settings, they are written in a cloze-like text, where the gaps (=variables) are displayed as comboboxes or hyperlinks which open some kind of ...
1
vote
1answer
140 views

Android UI pattern for saving partial record information into the database

I am designing a simple expenses app which keeps track of expenses I do per month. The expenses have a name, amount as well as a category. One can add/delete categories at will. I am storing the ...
1
vote
2answers
186 views

patterns on showing an empty textfield in Android

Well I am developing a simple Tip Calculator app as a part of a course and I was faced with the problem that if the user enters an empty text field, how should the error be shown to the user. I ...
1
vote
3answers
569 views

Using the MVP pattern with MonoDroid

Here's my attempt at using MVP (or Passive View more specifically?) with a MonoDroid app: https://gist.github.com/857356 My main goal isn't reuse, but rather increased testability and (hopefully) ...
1
vote
4answers
202 views

UI Pattern

I have a repeating User interface pattern in my application. An example is collection of 5 years address data. I need to collect data for 5 years and then move on. Can anyone point me to any good UI ...
0
votes
0answers
17 views

Decimal point neighbours

I am writing a JavaScript library for web forms and inspired by a forgiving format UI pattern would like to simplify entry of decimal numbers on sites that support non-English input. The problem is ...
0
votes
1answer
37 views

How would you make this not so common Android UI pattern?

I have used an Android application recently that has an interesting UI pattern in it. I have made two screenshots to show you what I'm talking about: Initial State (look at the blue rectangle on the ...
0
votes
1answer
521 views

Most efficient way to implement Dashboard UI pattern?

I want to do the Dashboard pattern. I currently do this for each home button: <FrameLayout android:layout_weight="1" android:focusable="true" android:onClick="onHomeButtonClicked" ...
0
votes
1answer
105 views

How to run the Google Schedule I/O 2010 Android app?

I was trying to implement the Action Bar UI pattern for Android. For reference I checked out the Google I/O 2010 schedule app from http://code.google.com/p/iosched/. I then created an Android project ...
0
votes
1answer
55 views

Save Changes Button

I'm working on a project about user contributed recipes and connecting them in different ways. One of the things that i used to do without thinking is whenever there is an edit form e.g. whenever the ...