Lecture on UI Design and Paper Prototyping

Slides:



Advertisements
Similar presentations
Prof. Yitzchak Rosenthal
Advertisements

LIS 677 Interface Critique LIS 677 Presented by Blanca Polo.
Interaction Styles Interface Widgets. What are Interaction Styles?  A Collection of interface objects and associated techniques from which an interaction.
Principles and Methods
Chapter 7 design rules.
User Interface Evaluation CIS 376 Bruce R. Maxim UM-Dearborn.
1 CSE 403 UI Prototyping Reading: Paper Prototyping, C. Snyder These lecture slides are copyright (C) Marty Stepp, They may not be rehosted, sold,
User Interface January 14, 2011 CSE 403, Winter 2011, Brun Three Mile Island.
1 CSE 403 UI Prototyping Reading: Paper Prototyping, C. Snyder These lecture slides are copyright (C) Marty Stepp, They may not be rehosted, sold,
Department of Mechanical Engineering, LSUSession VII MATLAB Tutorials Session VIII Graphical User Interface using MATLAB Rajeev Madazhy
SWE205 Review Spring Why is software unusable? Users are no longer trained. Why? Feature creep Inherently hard: a problem of communication Designed.
Object-Oriented Software Engineering Practical Software Development using UML and Java Chapter 7: Focusing on Users and Their Tasks.
Designing Interface Components. Components Navigation components - the user uses these components to give instructions. Input – Components that are used.
GUI Widgets Jeff Offutt SWE 432 Design and Implementation of Software for the Web.
Lecture 5(b), Slide 1 CP2030 Copyright © University of Wolverhampton CP2030 Visual Basic for C++ Programmers v Component 5(b) HCI aspects of VB programming.
Software Project Planning Defining the Project Writing the Software Specification Planning the Development Stages Testing the Software.
Design Rules-Part B Standards and Guidelines
XP New Perspectives on Microsoft Windows 2000 Professional Windows 2000 Tutorial 1 1 Microsoft Windows 2000 Professional Tutorial 1 – Exploring the Basics.
1 TCSS 360, Spring 2005 Lecture Notes UI Design and Paper Prototyping Relevant Reading: Paper Prototyping C. Snyder.
Technical Paper Review Designing Usable Web Forms – Empirical Evaluation of Web Form Improvement Guidelines By Amit Kumar.
Evaluating a UI Design Expert inspection methods Cognitive Walkthrough
CSE 403 Lecture 6 User Interface Prototyping Reading: Paper Prototyping, C. Snyder slides created by Marty Stepp
User Interface Components Lecture # 5 From: interface-elements.html.
1 Lecture 5: Interactive Tools: Prototypers (HyperCard, Director, Visual Basic), Interface Builders Brad Myers Advanced User Interface Software.
Design Phase intro & User Interface Design (Ch 8)
Photoshop Actions Lights, Camera, Actions in Photoshop.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
UI Requirements and Design Material in part from Marty Stepp and Valentine Razmov, past 403 classes. CSE 403, Spring 2008.
DB Implementation: MS Access Forms. MS Access Forms: Purpose Data entry, editing, & viewing data in Tables Forms are user-friendlier to end-users than.
Fundamentals of Windows Mouse n 4 Basic Operations: –Pointing –Clicking –Double Clicking –Dragging.
Design rules.
FOP: Multi-Screen Apps
Dive Into® Visual Basic 2010 Express
Graphical User Interface in MATLAB
Human Computer Interaction (HCI)
Chapter Topics 15.1 Graphical User Interfaces
User Interface Components
Building a User Interface with Forms
System Design Ashima Wadhwa.
Java Look-and-Feel Design Guidelines
3.01 Apply Controls Associated With Visual Studio Form
Example Program DemoLowLevelEvents.java DemoHighLevelEvents.java
Prototyping.
Unit 2 User Interface Design.
Topic 2: Information Architecture and Application Structure
3.01 Apply Controls Associated With Visual Studio Form
Design rules.
Chap 7. Building Java Graphical User Interfaces
Cooper Part III Interaction Details Designing for the Desktop
DB Implementation: MS Access Forms
Graphical User Interfaces -- Introduction
Exploring the Basics of Windows XP
Intro To Design 1 Elementary School Library: User Sub-System Class Diagrams Software Engineering CSCI-3321 Dr. Tom Hicks Computer Science Department.
Accidental and Essential Problems Excise Tasks
Microsoft Windows 2000 Professional
HCI – DESIGN RATIONALE 20 November 2018.
InnovationQ Plus Quick Start Guide
DB Implementation: MS Access Forms
Chapter 15: GUI Applications & Event-Driven Programming
10 Rules of Good UI Design to Follow On Every Web Design Project
COMP444 Human Computer Interaction Usability Engineering
Chapter 7 design rules.
Chapter 7 design rules.
Chapter 7 design rules.
Lesson 1 – PowerPoint Essentials
CMPE 280 Web UI Design and Development April 16 Class Meeting
Windows Operating System
Chapter 7 design rules.
Presentation transcript:

Lecture on UI Design and Paper Prototyping www.AssignmentPoint.com www.assignmentpoint.com

Usability and software design usability: the effectiveness with which users can achieve tasks in one software environment studying and improving usability is part of the Human-Computer Interaction (HCI) branch of computer science

Good UI design and usability usability and good UI design are closely related a bad UI can have unfortunate results...

Achieving usability some methods to achieve good usability: user testing / field studies having users use the actual product and gathering data evaluations and reviews by UI experts card sorting showing users various UI menus and asking them to group the ones that are similar, to see what UI tasks are seen as being related by users prototyping good UI design focuses on the user, not on the developer or on the system environment

Prototyping prototyping: creating a scaled-down or incomplete version of a system to demonstrate or test aspects of the system Why should we do prototyping? aids UI design provides basis for testing team-building allows interaction with user to ensure satisfaction

Some methods of prototyping UI builders (Visual Studio, ...) draw a GUI visually by dragging and dropping UI controls on screen in the past, was done in simple languages like Visual Basic modern IDEs have UI builders for more robust languages such as Java implementation by hand writing a "quick" version of your code

Paper prototyping paper prototyping: a means of usability testing where representative users perform tasks by interacting with a paper version of a user interface Why paper prototype? Why not just code up a working prototype? paper prototype is much faster to create than code can make changes to paper faster than code (editable) paper has more visual bandwidth (can see more at once) paper prototyping is more conducive to working in teams than most programming or normal prototyping paper prototyping can be done by non-technical people, or people with programming experience in different languages

Comparison of techniques paper prototype UI builder actual implementation ease of use ++ -- fast turn-around + flexibility, control - executable team design

Where does P.P. fit in? At what point in the software lifecycle should we do (paper) prototyping? When would it be most useful to do it? Why? We talk about requirements being about "what" and design being about "how." Which is paper prototyping? PP helps us uncover requirements and also upcoming design issues do PP during or after requirements analysis; before design "what" vs. "how": PP shows us "what" is in the UI, but it also shows us details of "how" the user can achieve their goals in the UI; I categorize it as "how"

A paper prot. usability session user is given tasks to perform using the paper prototype session can be observed by people or camera one developer can "play computer" Facilitator User “Computer” Observer(s)

Schneiderman's 8 Golden Rules Strive for consistency. Give shortcuts to the user. Offer informative feedback. Make each interaction with the user yield a result. Offer simple error handling. Permit easy undo of actions. Let the user be in control. Reduce short-term memory load on the user.

UI design examples

UI design, components When should we use: A button? A check box? A radio button? A text field? A list? A combo box? A menu? A dialog box? Other..?

UI design - buttons, menus use buttons for single independent actions that are relevant to the current screen try to use button text with verb phrases such as "Save" or "Cancel", not generic: "OK", "Yes", "No" use Mnemonics or Accelerators (Ctrl-S) use toolbars for common actions use menus for infrequent actions that may be applicable to many or all screens Users hate menus! Try not to rely too much on menus. Provide another way to access the same functionality (toolbar, hotkey, etc)

UI design - checkboxes / radio use check boxes for on/off switches, when any one switch can be toggled irrespective of the others (often correspond to boolean values) use radio buttons for related choices, when only one choice can be activated at a time (often corresponds to enum / constant values)

UI design - lists, combo boxes use text fields (usually with a label) when the user may type in anything they want use lists when there are many fixed choices (too many for radio buttons to be practical) and you want all choices visible on screen at once use combo boxes when there are many fixed choices, but you don't want to take up screen real estate by showing them all at once use a slider or spinner for a numeric value

An example UI screen What can we say about this UI dialog? Did the designer choose the right components? Let's assume there are 20 collections and 3 ways to search (by title, author, relevancy) LI BS Y S: Search Choose collection: Word or phrase: Search by: Adjacent words OK Default Cancel All T itle es No Some of the combo boxes might be better as lists. The Adjacent Words should be a checkbox.

UI design - multiple screens use a tabbed pane when there are many screens that the user may want to switch between at any moment use a CardLayout to "swap" between screens when necessary (not switchable by user) use dialog boxes or option panes to present temporary screens or options

Creating a paper prototype gather materials paper, pencils/pens tape, scissors highlighters, transparencies identify the screens in your UI consider use cases, inputs and outputs to user think about how to get from one screen to next this will help choose between tabs, dialogs, etc.

Application backgrounds draw the app background (the parts that matter for the prototyping) on its own, then lay the various subscreens on top of it

Representing a changing UI layers of UI can be placed on top of background as user clicks various options

Representing interactive widgets buttons / check boxes: tape tabs, dialog boxes: index cards text fields: removable tape combo boxes: put the choices on a separate piece of paper that pops up when they click selections: a highlighted piece of tape or transparency disabled widgets: make a gray version that can sit on top of the normal enabled version computer beeps: say "beep" (hah!)

Example paper prot. screen

Example full paper prototype

Paper prototyping exercise In groups of 1--4 (optionally, with people you think may be in your project group), let's do a simple paper prototype for a Scrabble game. Draw the main UI and enough widgets to walk through a creation of a new game and playing a move on the board. After the prototypes are done, we'll try walking through each UI together. Things to think about: How many clicks are needed to start a new game? To make a play? Could your parents figure it out without guidance?