usability

CSS media query to detect device type regardless of size

大城市里の小女人 提交于 2019-12-04 04:28:49
问题 I have been looking into media queries, but so far all the examples I can find on google and Stack Overflow have been to use specific sizes ( max-width , max-device-width , etc.) The problem with this is that it doesn't give me the flexibility I need. I want to be able to deliver a ** specifically tailored** experience to desktops and tablets. The reason I want to do this is that interacting with a tablet is different than interacting with a small computer monitor. An iPad in landscape

Switching OK-Cancel and Cancel-OK to enforce user interaction?

大兔子大兔子 提交于 2019-12-04 03:29:23
This is inspired by the question OK-Cancel or Cancel-OK? . I remember reading somewhere about the concept of switching OK-Cancel/Cancel-OK in certain situations to prevent the user from clicking through information popups or dialog boxes without reading their content. As far as I remember, this also included moving the location of the OK button (horizontally, left to right) to prevent the user from just remembering where to click. Does this really make sense? Is this a good way to force the user to "think/read first, then click"? Are there any other concepts applicable to this kind of

Should focus be given to a control when a webpage finishes loading?

强颜欢笑 提交于 2019-12-04 03:12:25
Here are some examples of what I mean: google.com - focus is set on the "search" box gmail.google.com - focus is set on the "user name" field (actually, most web email clients do this). stackoverflow, ask a question - focus is set on the "title" box. Sometimes, this is a convenient feature - e.g., on Google. From a usability standpoint, however, is it really considered a good feature to have on login pages? Personally, I have often entered my user name, started to enter my password, then the page finished loading and had focus put back onto the user name field. Unfortunately, since I have

Best solution for a drop down list with over 300 rows?

白昼怎懂夜的黑 提交于 2019-12-03 21:51:43
问题 I have this problem, in a form I have a list of customers that could be more than 300 and, for me, it isn't very simple find over there because I should scroll all results for find a single row! On the old technology I had a button that opened a pop up where I should research which customer I should select and than I used a javascript for recording the selection on the first form, but It could be a good solution with new technology! How can I resolve this doubt? What is the best solution for

Whats the main advantage and disadvantage of “do not keep activities” in android

◇◆丶佛笑我妖孽 提交于 2019-12-03 18:49:49
问题 One query I would like to have if anyone could answer it like: Do not keep activities options to be checked during testing android mobile application from developers options. I used it in my application and found that my application behaves inappropriately and crashed when I switched ON Do not keep activities in android. My questions were few : 1: How much this option will affect mobile applications? 2: What exactly does this do? It sounds like an app killer,I notice in the Developer Options

How to display a temporary baloon tooltip during input validation?

别来无恙 提交于 2019-12-03 17:20:33
问题 I'm somewhat used to the GUI idiom where when I type something wrong in a text input field a balloon pops up from the field with info about what I got wrong / expected input. It remains visible until I type again. But now I couldn't find any example to point to. Given a JTextfield do you know of any library/code that would display such a balloon when triggered by my keylistener? @see http://www.javapractices.com/topic/TopicAction.do?Id=151 回答1: Balloon Tip is a library that does that:

Text User Interface Design Reference?

寵の児 提交于 2019-12-03 15:53:01
Is there a good book or other references on Text User Interface Design? I am not interested in graphical user interfaces. I am interested in usability for good command line and scripting interfaces. Your interface should follow the Rule of Least Surprise as described by ESR in The Art of Unix Programming . If your programm supports command line options, make sure they have the traditional meaning . Be sure to read the chapter about Tradeoffs between CLI and Visual Interfaces . IBM developed a standard called Common User Access. The Common User Access Basic Interface Design Guide has been

What metrics for GUI usability do you know?

南笙酒味 提交于 2019-12-03 14:57:24
Of course the best metric would be a happiness of your users. But what metrics do you know for GUI usability measurements? For example, one of the common metrics is a average click count to perform action. What other metrics do you know? Jakob Nielsen has several articles regarding usability metrics, including one that is entitled, well, Usability Metrics : The most basic measures are based on the definition of usability as a quality metric: success rate (whether users can perform the task at all), the time a task requires, the error rate, and users' subjective satisfaction. I just look at

Change TextField selection color in AS3

懵懂的女人 提交于 2019-12-03 14:00:28
问题 How can I change the select ("highlight") color of an TextField in actionscript 3? I've got an input textfield with white text on a black backdrop and as a result, selections are invisible, which is horrible for usability. Thanks! 回答1: Try this: var c:Color = new Color(MyTextField); c.setTransform({rb:255}); or for a more up to date approach: http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/geom/ColorTransform.html#includeExamplesSummary 回答2: Another approach is to use the Text

Hide or not to hide the system tray in a Windows Phone 7 application?

大城市里の小女人 提交于 2019-12-03 12:49:55
I am debating whether to hide or not to hide the system tray in a Windows Phone 7 application. I've not found any general suggestions on this issue -the official Windows Phone design guidelines don't address this issue at all - except for Jeff Wilcox's blog post who suggested that he personally likes to see the system tray in applications. I'd like some general advice on this issue from other Windows Phone developers. Some reasons for showing the system tray are Doesn't take up that much space Users may want to see it at times Reasons for hiding it are You can't control its background: unless