MC 4,5 Flashcards
User Interaction and controls
Active and passive controls. Writing callback methods for active controls
SQLite
provides relational data to list views and other controls. Providing data to controls
Fragment
represents a behavior or portion of UI in an activity
Android
Open source, based on linux kernel. Allows devs to modify and customize OS. Large app ecosystem. Can publish apps to platform. Heavily integrated with google services ex. maps. Customizable UI.
Each Process has its own
unique ID that interacts between apps. Apps are called through a single entry point. Entities are called one after the other.
Android Studio Features
- Version Control
- Debugging Tools
- Code Completion
- Logcat
AVD
Android Virtual Device, basically an emulator to test apps real-time
Real Device Testing
Enable dev options on device to test app directly
Gradle
Powerful build system used in Android Studio. Serves as the foundation for managing the build process of android apps. Automates several aspects of building apps. Offers flexible and configurable approach to accommodate needs of app development projects.
Gradle Properties
- Open Source build automation system
- Automate testing, building, publishing etc.
- Powered by guild programming language. Concise yet expressiveS
Specific Reasons to choose Gradle
- Domain Specific Language (DSL) to describe and manipulate build logic
- Build files are groovy based and allow mixing of declarative elements through DSL
- Built in dependency management through maven/ivy
- Flexible. Allows best practices but doesn’t force you
- Plugins can expose their own DSL and API for build files to use
- Good tooling API allowing IDE integration
Building process of android app
- Compilers convert code to dex files which include bytecode that runs on android devices and everything else into compiled resources
- The APK packager combines DEX and compiled resources into a single APK
- APK packager signs your APK using debug or release keystore
- Uses zipalign tool to optimize app to take less memory before generating final APK
App Bar
Dedicated space to give your app identity. Access important actions such as search support for switching tabs
UI success criteria
- Easy and fast access to main functionality
- Clear and non intimidating landing page
- User gets clear understanding what app does
- Option to include current info about application or app domain
- Data loading is intrusive
- No non-necessary data is loaded
Dashboard (Description)
Landing page of an application containing large and clear symbols of main functionality and optionally an area for relevant new info.
Dashboard (Problem)
Very clear and easily accessible navigation to main functionality is very important
Dashboard (Solution)
Landing page should be visually clear and provide easy access to main tasks.
Dynamic List (Description)
Many apps use lists to display large amounts of data. This data is often loaded over a network connection. Dynamic lists improve performance.
Dynamic List (Problem)
Loading lots of data can be slow especially if over internet, as it has to load it all at once
Dynamic List (Solution)
Instead of waiting for all the data to load it is better to load only the most relevant data and populate it to a list immediately, then automatically load more when user reaches the end.
Manifest attributes
XMLNS: name of loaded namespace and where DTD for xml parser is loaded
Package: Name of java package for this application
Android:version : Version code for this version of the app
Android:versionName : version name for publishing
<activity> attributes
</activity>
android:name - the name of the activity which will be used as the name of the Java file
android:label - a string that we can programmatically retrieve at run time
<intent>
</intent>
used to send a message from one program to another, consists of two parts: action, and the data that action is supposed to use
What can intents be used for
Loading Built in web browser, launching web with search string, launching dialer with phone number…
UI guidelines
Collections of recommendations that are allowed when making UI. Such as general design principles, standards, style guides. Don’t rely on these exclusively, still ask questions and use logic.
UI basic principles
- Spacing and Positioning
- Size
- Grouping
- Intuitiveness
Spiral Design Process 6 Phases
Envisioning, planning, prototyping, developing, stabilizing, and preparing for the next version.
Usability Testing
Starts from beginning and at every iteration. Use an iterative cyclical design process with early focus on users, integrated design, and continual testing.
Envisioning Phase
Contextual research, competitive testing, user audience analysis
Planning Phase
User scenarios, task analysis, heuristic evaluations, cognitive walkthroughs, GOMS, Iterative usability test
GOMS
Goal operator methods and selection rules; method of describing task and users knowledge of preforming tasks
When is software hard to use
Most users don’t construct adequate mental models of product. Interface design for most current software assumes that users will understand a conceptual model that the designers carefully crafted.
Why do people change the way they interact with technology?
Changing needs, connection, context, approach
5Ws of pervasive computing
Who: identify system user and their role. Extended to important elements like pets and robots.
Where: Tracking of geographic location of user at any point in time.
When: Association of activities with time used to build a realistic picture of system dynamics. Need to know when changes occur and how long they last.
What: Recognition of activities and tasks users are performing. Fundamental to provide help. Multiplicity of possible scenarios makes this difficult. Spatial and temporal awareness help us achieve task awareness.
Why: Capability to infer and understand intentions and goals behind activities. Hard but fundamental challenge that allows system to anticipate needs and serve users sensibly.
Information Architecture
Discipline and set of methods that aim to identify and organize information in a purposeful and service-oriented way. The goal is to improve info access, relevance and usefulness to a given audience.
Context Awareness
User’s location, environment, time and identity i.e context. Improving mobile service convenience will be done through use of context in mobile UX. Consumer product strategists must anticipate what users want when opening their phone.
A customer’s mobile context consists of:
- Situation: Current location, altitude, environment, and speed of app
- Preferences: History and personal decisions the customer has shared with you or social network
- Attitudes: The feelings implied by customer’s actions and logistics
How to achieve Context Awareness
using sensors, raw context data, preprocessing
Context Aware Sensors
Accelerometer, Gyroscope, Digital compass, barometer
Accelerometer
Detect orientation of phone and motions ex. shaking
Gyroscope
add dimension of rotation or twist
Digital compass
Uses magnometer to provide orientation in terms of magnetic field
Barometer
Retrieves altitude data
User Models
target helping designers and developers maximize levels of visibility and accessibility of products/services through user properties for adaptation purposes
A model may represent
an individual, group, community
2 Types of Model
Empirical, Analytical
Empirical Model
Don’t try to understand user’s cognitive processes
Analytical Model
Simulate cognitive processes that take place during interaction between users + system
Evaluating UI or usability becomes difficult because of:
Mobile context use, small size, rich device functionality, lack of direct manipulation, software design
Location Info
Achieved through device/network. GPS can predict within 10 feet radius. Network side location can be determined through timing advanced technology. Network call must be successful to return location. Base station location accurate to 100 feet (radius)
Context Awareness Best Practices
Don’t test on emulator, Don’t block OnSensorChanged(). Avoid depreciated sensor types or methods. Verify sensors before using, choose sensor delays carefully, unregister sensor listeners.
Versioning
Sensor availability varies from device to device and in different android versions. Depreciated sensors are replaced by newer sensors in newer versions.
Android Sensor Framework
Provides several methods to make it easy to determine which sensors are available on the device. Use mSensorManager
How to get list of every sensor
List<sensor> deviceSensors = inSensorManager.getSensorList(sensor.Type_all)</sensor>
Ethical Perspective
To what extent should one share their personal information through smart mobile devices
Design Consideration (Bank Example)
- These services are accessible through different devices such as laptops, desktops, smart mobile devices etc.
- Design the applications for different screen sizes
- Apply different security levels
Internet Evolution
Web 1.0 - Allowed people to read from internet
Web 2.0 - Allows people to read and write to internet
Web 3.0 - Promises potential for apps to speak to each other directly
Web 4.0 - “Mobile Web”
Web 5.0 - “Open, linked and intelligent web = Emotional Web”