SlideShare a Scribd company logo
User Experience and Interactions 
Design 
Rakesh Kumar Jha 
M. Tech, MBA 
Delivery Manager
Best Practices for Interaction and 
Engagement 
• These classes teach you how to engage and 
retain your users by implementing the best 
interaction patterns for Android.
Best Practices for Interaction and 
Engagement 
1. Designing Effective Navigation 
2. Implementing Effective Navigation 
3. Notifying the User 
4. Adding Search Functionality 
5. Making Your App Content Searchable by 
Google
Designing Effective Navigation 
1. Planning Screens and Their Relationships 
2. Planning for Multiple Touchscreen Sizes 
3. Providing Descendant and Lateral Navigation 
4. Providing Ancestral and Temporal Navigation 
5. Putting it All Together: Wireframing the 
Example App
Implementing Effective Navigation 
1. Creating Swipe Views with Tabs 
2. Creating a Navigation Drawer 
3. Providing Up Navigation 
4. Providing Proper Back Navigation 
5. Implementing Descendant Navigation
Notifying the User 
1. Building a Notification 
2. Preserving Navigation when Starting an 
Activity 
3. Updating Notifications 
4. Using Big View Styles 
5. Displaying Progress in a Notification
Adding Search Functionality 
1. Setting up the Search Interface 
2. Storing and Searching for Data 
3. Remaining Backward Compatible
Making Your App Content Searchable 
by Google 
1. Enabling Deep Links for App Content 
2. Specifying App Content for Indexing
Designing Effective Navigation
Planning Screens and Their 
Relationships 
• Buttons leading to different sections (e.g., 
stories, photos, saved items) 
• Vertical lists representing collections (e.g., 
story lists, photo lists, etc.) 
• Detail information (e.g., story view, full-screen 
photo view, etc.)
Planning for Multiple Touchscreen 
Sizes 
• Designing applications for television sets also 
requires attention to other factors, including 
interaction methods (i.e., the lack of a touch 
screen), legibility of text at large reading 
distances, and more. 
• Although this discussion is outside the scope 
of this class,
Planning for Multiple Touchscreen 
Sizes 
• Group Screens with Multi-pane Layouts 
• Design for Multiple Tablet Orientations 
• Group Screens in the Screen Map 
• Android Design: Multi-pane Layouts 
• Designing for Multiple Screens
Providing Descendant and Lateral 
Navigation 
• Buttons and Simple Targets 
• Lists, Grids, Carousels, and Stacks 
• Tabs 
• Horizontal Paging (Swipe Views) 
• Android Design: Buttons 
• Android Design: Lists 
• Android Design: Grid Lists 
• Android Design: Tabs 
• Android Design: Swipe Views
Putting it All Together: Wireframing 
the Example App 
• Choose Patterns 
• Sketch and Wireframe 
• Create Digital Wireframes
Putting it All Together: Wireframing 
the Example App 
• Wireframing is the step in the design process 
where you begin to lay out your screens. Get 
creative and begin imagining how to arrange 
UI elements to allow users to navigate your 
app. Keep in mind that at this point, pixel-perfect 
precision (creating high-fidelity 
mockups) is not important
Putting it All Together: Wireframing 
the Example App 
• Wireframing is the step in the design process 
where you begin to lay out your screens. Get 
creative and begin imagining how to arrange 
UI elements to allow users to navigate your 
app. Keep in mind that at this point, pixel-perfect 
precision (creating high-fidelity 
mockups) is not important
Implementing Effective Navigation
Designing Effective Navigation 
• how to implement the key navigation design 
patterns detailed in the Designing Effective 
Navigation
Designing Effective Navigation 
• how to implement the key navigation design 
patterns detailed in the Designing Effective 
Navigation 
• how to implement navigation patterns with 
tabs, swipe views, and a navigation drawer 
• Several elements require the Support 
Library APIs.
Creating Swipe Views with Tabs 
• Learn how to implement tabs in the action bar 
and provide horizontal paging (swipe views) to 
navigate between tabs or left navigationbar. 
• wipe views provide lateral navigation between 
sibling screens such as tabs with a horizontal 
finger gesture (a pattern sometimes known as 
horizontal paging)
Creating Swipe Views with Tabs 
• <?xml version="1.0" encoding="utf-8"?> 
<android.support.v4.view.ViewPager 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/pager" 
android:layout_width="match_parent" 
android:layout_height="match_parent" /> 
• To insert child views that represent each page, you need to hook this 
layout to a PagerAdapter. There are two kinds of adapter you can use:
Creating Swipe Views with Tabs 
• FragmentPagerAdapter – 
This is best when navigating between sibling 
screens representing a fixed, small number of 
pages. 
• FragmentStatePagerAdapter – 
This is best for paging across a collection of objects 
for which the number of pages is undetermined. It 
destroys fragments as the user navigates to other 
pages, minimizing memory usage.
Creating Swipe Views with Tabs 
public class CollectionDemoActivity extends FragmentActivity { 
// When requested, this adapter returns a DemoObjectFragment, 
// representing an object in the collection. 
DemoCollectionPagerAdapter mDemoCollectionPagerAdapter; 
ViewPager mViewPager; 
public void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_collection_demo); 
// ViewPager and its adapters use support library 
// fragments, so use getSupportFragmentManager. 
mDemoCollectionPagerAdapter = 
new DemoCollectionPagerAdapter( 
getSupportFragmentManager()); 
mViewPager = (ViewPager) findViewById(R.id.pager); 
mViewPager.setAdapter(mDemoCollectionPagerAdapter); 
} 
}
Creating Swipe Views with Tabs 
public class DemoCollectionPagerAdapter extends FragmentStatePagerAdapter { 
public DemoCollectionPagerAdapter(FragmentManager fm) { 
super(fm); 
} 
@Override 
public Fragment getItem(int i) { 
Fragment fragment = new DemoObjectFragment(); 
Bundle args = new Bundle(); 
// Our object is just an integer :-P 
args.putInt(DemoObjectFragment.ARG_OBJECT, i + 1); 
fragment.setArguments(args); 
return fragment; 
} 
@Override 
public int getCount() { 
return 100; 
} 
@Override 
public CharSequence getPageTitle(int position) { 
return "OBJECT " + (position + 1); 
} 
}
Creating Swipe Views with Tabs 
/ Instances of this class are fragments representing a single 
// object in our collection. 
public static class DemoObjectFragment extends Fragment { 
public static final String ARG_OBJECT = "object"; 
@Override 
public View onCreateView(LayoutInflater inflater, 
ViewGroup container, Bundle savedInstanceState) { 
// The last two arguments ensure LayoutParams are inflated 
// properly. 
View rootView = inflater.inflate( 
R.layout.fragment_collection_object, container, false); 
Bundle args = getArguments(); 
((TextView) rootView.findViewById(android.R.id.text1)).setText( 
Integer.toString(args.getInt(ARG_OBJECT))); 
return rootView; 
} 
}
Add Tabs to the Action Bar 
• Action bar tabs offer users a familiar interface 
for navigating between and identifying sibling 
screens in your app.
@Override 
public void onCreate(Bundle savedInstanceState) { 
final ActionBar actionBar = getActionBar(); 
... 
// Specify that tabs should be displayed in the action bar. 
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); 
// Create a tab listener that is called when the user changes tabs. 
ActionBar.TabListener tabListener = new ActionBar.TabListener() { 
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) { 
// show the given tab 
} 
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) { 
// hide the given tab 
} 
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) { 
// probably ignore this event 
} 
}; 
// Add 3 tabs, specifying the tab's text and TabListener 
for (int i = 0; i < 3; i++) { 
actionBar.addTab( 
actionBar.newTab() 
.setText("Tab " + (i + 1)) 
.setTabListener(tabListener)); 
} 
}
Change Tabs with Swipe Views 
@Override 
public void onCreate(Bundle savedInstanceState) { 
... 
// Create a tab listener that is called when the user changes tabs. 
ActionBar.TabListener tabListener = new ActionBar.TabListener() { 
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction 
ft) { 
// When the tab is selected, switch to the 
// corresponding page in the ViewPager. 
mViewPager.setCurrentItem(tab.getPosition()); 
} 
... 
}; 
}

More Related Content

PDF
Axure Basic Concepts
Mauricio Candamil
 
PDF
Basics of css3
Rakesh Jha
 
PDF
Introduction phonegap
Rakesh Jha
 
PPTX
Mobile testing practices
Rakesh Jha
 
PDF
Android Design Architecture
Rakesh Jha
 
PPTX
Lisa's routine
nataliagilgonzalez
 
PDF
Actionbar and fragment
Leonardo YongUk Kim
 
PPTX
Effective use of powerpoint
akosipalos
 
Axure Basic Concepts
Mauricio Candamil
 
Basics of css3
Rakesh Jha
 
Introduction phonegap
Rakesh Jha
 
Mobile testing practices
Rakesh Jha
 
Android Design Architecture
Rakesh Jha
 
Lisa's routine
nataliagilgonzalez
 
Actionbar and fragment
Leonardo YongUk Kim
 
Effective use of powerpoint
akosipalos
 

Viewers also liked (16)

PPTX
Презентация ПЗПО
Uniteh
 
PPTX
My persentation
Utari Haryati
 
PPTX
Презентация ПЗПО 2013
Uniteh
 
PDF
Royal Incorporation of Architects Scotland
Warren Elsmore
 
DOC
Finansijska trzista
Rodjaroki
 
PDF
Android coding standard
Rakesh Jha
 
PDF
каталог запчастей болгарские тали
Uniteh
 
PDF
29 Ways To Stay Creative - ENG version
VietNam StartUp Magazine
 
PPTX
Android ndk - Introduction
Rakesh Jha
 
PPTX
Introduction of phonegap installation and configuration of Phonegap with An...
Rakesh Jha
 
PPTX
Webnisus Media SEO portfolio
webnisus
 
PDF
Basics of HTML5 for Phonegap
Rakesh Jha
 
PDF
Advanced programing in phonegap
Rakesh Jha
 
PPTX
Mobile applications testing (challenges, tools & techniques)
Rakesh Jha
 
PPTX
Introduction to jquery mobile with Phonegap
Rakesh Jha
 
PDF
Advanced JQuery Mobile tutorial with Phonegap
Rakesh Jha
 
Презентация ПЗПО
Uniteh
 
My persentation
Utari Haryati
 
Презентация ПЗПО 2013
Uniteh
 
Royal Incorporation of Architects Scotland
Warren Elsmore
 
Finansijska trzista
Rodjaroki
 
Android coding standard
Rakesh Jha
 
каталог запчастей болгарские тали
Uniteh
 
29 Ways To Stay Creative - ENG version
VietNam StartUp Magazine
 
Android ndk - Introduction
Rakesh Jha
 
Introduction of phonegap installation and configuration of Phonegap with An...
Rakesh Jha
 
Webnisus Media SEO portfolio
webnisus
 
Basics of HTML5 for Phonegap
Rakesh Jha
 
Advanced programing in phonegap
Rakesh Jha
 
Mobile applications testing (challenges, tools & techniques)
Rakesh Jha
 
Introduction to jquery mobile with Phonegap
Rakesh Jha
 
Advanced JQuery Mobile tutorial with Phonegap
Rakesh Jha
 
Ad

Similar to User experience and interactions design (20)

PPTX
Windows Phone 8 - 3 Building WP8 Applications
Oliver Scheer
 
PDF
[PBO] Pertemuan 12 - Pemrograman Android
rizki adam kurniawan
 
PDF
What's new in android: jetpack compose 2024
Toru Wonyoung Choi
 
PDF
03.Controls in Windows Phone
Nguyen Tuan
 
PPTX
Application Development - Overview on Android OS
Pankaj Maheshwari
 
PDF
Designing and implementing_android_uis_for_phones_and_tablets
Teddy Koornia
 
PDF
Ch4 creating user interfaces
Shih-Hsiang Lin
 
PPT
Using Ajax to improve your user experience at Web Directions South 2009
Peak Usability
 
PDF
MVP Community Camp 2014 - How to use enhanced features of Windows 8.1 Store ...
Akira Hatsune
 
PDF
Prototyping + User Journeys
Fitri Farina Mahat
 
PDF
Navigation in flutter – how to add stack, tab, and drawer navigators to your ...
RubenGray1
 
PPTX
React Native: Introduction
InnerFood
 
PPT
Lecture14 abap on line
Milind Patil
 
PPT
Android Tutorial
Fun2Do Labs
 
PPT
Hello Android
Trong Dinh
 
PDF
User-centred design
Ivano Malavolta
 
PPTX
Lecture 2 Styling and Layout in React Native.pptx
GevitaChinnaiah
 
PDF
Information Architecture & UI Design
Ivano Malavolta
 
PPTX
W1_Lec01_Lec02_Layouts.pptx
ssuserc1e786
 
PPTX
Android Custom Views
Babar Sanah
 
Windows Phone 8 - 3 Building WP8 Applications
Oliver Scheer
 
[PBO] Pertemuan 12 - Pemrograman Android
rizki adam kurniawan
 
What's new in android: jetpack compose 2024
Toru Wonyoung Choi
 
03.Controls in Windows Phone
Nguyen Tuan
 
Application Development - Overview on Android OS
Pankaj Maheshwari
 
Designing and implementing_android_uis_for_phones_and_tablets
Teddy Koornia
 
Ch4 creating user interfaces
Shih-Hsiang Lin
 
Using Ajax to improve your user experience at Web Directions South 2009
Peak Usability
 
MVP Community Camp 2014 - How to use enhanced features of Windows 8.1 Store ...
Akira Hatsune
 
Prototyping + User Journeys
Fitri Farina Mahat
 
Navigation in flutter – how to add stack, tab, and drawer navigators to your ...
RubenGray1
 
React Native: Introduction
InnerFood
 
Lecture14 abap on line
Milind Patil
 
Android Tutorial
Fun2Do Labs
 
Hello Android
Trong Dinh
 
User-centred design
Ivano Malavolta
 
Lecture 2 Styling and Layout in React Native.pptx
GevitaChinnaiah
 
Information Architecture & UI Design
Ivano Malavolta
 
W1_Lec01_Lec02_Layouts.pptx
ssuserc1e786
 
Android Custom Views
Babar Sanah
 
Ad

More from Rakesh Jha (9)

PDF
Whitep paper on Emerging java and .net technology and critical trends
Rakesh Jha
 
DOCX
Ways to be a great project manager
Rakesh Jha
 
DOCX
What is mobile wallet
Rakesh Jha
 
DOCX
Cordova vs xamarin vs titanium
Rakesh Jha
 
PPTX
Native development kit (ndk) introduction
Rakesh Jha
 
PPTX
Optimisation and performance in Android
Rakesh Jha
 
PPTX
Multithreading and concurrency in android
Rakesh Jha
 
PPTX
Advance ui development and design
Rakesh Jha
 
PDF
Android installation & configuration, and create HelloWorld Project
Rakesh Jha
 
Whitep paper on Emerging java and .net technology and critical trends
Rakesh Jha
 
Ways to be a great project manager
Rakesh Jha
 
What is mobile wallet
Rakesh Jha
 
Cordova vs xamarin vs titanium
Rakesh Jha
 
Native development kit (ndk) introduction
Rakesh Jha
 
Optimisation and performance in Android
Rakesh Jha
 
Multithreading and concurrency in android
Rakesh Jha
 
Advance ui development and design
Rakesh Jha
 
Android installation & configuration, and create HelloWorld Project
Rakesh Jha
 

User experience and interactions design

  • 1. User Experience and Interactions Design Rakesh Kumar Jha M. Tech, MBA Delivery Manager
  • 2. Best Practices for Interaction and Engagement • These classes teach you how to engage and retain your users by implementing the best interaction patterns for Android.
  • 3. Best Practices for Interaction and Engagement 1. Designing Effective Navigation 2. Implementing Effective Navigation 3. Notifying the User 4. Adding Search Functionality 5. Making Your App Content Searchable by Google
  • 4. Designing Effective Navigation 1. Planning Screens and Their Relationships 2. Planning for Multiple Touchscreen Sizes 3. Providing Descendant and Lateral Navigation 4. Providing Ancestral and Temporal Navigation 5. Putting it All Together: Wireframing the Example App
  • 5. Implementing Effective Navigation 1. Creating Swipe Views with Tabs 2. Creating a Navigation Drawer 3. Providing Up Navigation 4. Providing Proper Back Navigation 5. Implementing Descendant Navigation
  • 6. Notifying the User 1. Building a Notification 2. Preserving Navigation when Starting an Activity 3. Updating Notifications 4. Using Big View Styles 5. Displaying Progress in a Notification
  • 7. Adding Search Functionality 1. Setting up the Search Interface 2. Storing and Searching for Data 3. Remaining Backward Compatible
  • 8. Making Your App Content Searchable by Google 1. Enabling Deep Links for App Content 2. Specifying App Content for Indexing
  • 10. Planning Screens and Their Relationships • Buttons leading to different sections (e.g., stories, photos, saved items) • Vertical lists representing collections (e.g., story lists, photo lists, etc.) • Detail information (e.g., story view, full-screen photo view, etc.)
  • 11. Planning for Multiple Touchscreen Sizes • Designing applications for television sets also requires attention to other factors, including interaction methods (i.e., the lack of a touch screen), legibility of text at large reading distances, and more. • Although this discussion is outside the scope of this class,
  • 12. Planning for Multiple Touchscreen Sizes • Group Screens with Multi-pane Layouts • Design for Multiple Tablet Orientations • Group Screens in the Screen Map • Android Design: Multi-pane Layouts • Designing for Multiple Screens
  • 13. Providing Descendant and Lateral Navigation • Buttons and Simple Targets • Lists, Grids, Carousels, and Stacks • Tabs • Horizontal Paging (Swipe Views) • Android Design: Buttons • Android Design: Lists • Android Design: Grid Lists • Android Design: Tabs • Android Design: Swipe Views
  • 14. Putting it All Together: Wireframing the Example App • Choose Patterns • Sketch and Wireframe • Create Digital Wireframes
  • 15. Putting it All Together: Wireframing the Example App • Wireframing is the step in the design process where you begin to lay out your screens. Get creative and begin imagining how to arrange UI elements to allow users to navigate your app. Keep in mind that at this point, pixel-perfect precision (creating high-fidelity mockups) is not important
  • 16. Putting it All Together: Wireframing the Example App • Wireframing is the step in the design process where you begin to lay out your screens. Get creative and begin imagining how to arrange UI elements to allow users to navigate your app. Keep in mind that at this point, pixel-perfect precision (creating high-fidelity mockups) is not important
  • 18. Designing Effective Navigation • how to implement the key navigation design patterns detailed in the Designing Effective Navigation
  • 19. Designing Effective Navigation • how to implement the key navigation design patterns detailed in the Designing Effective Navigation • how to implement navigation patterns with tabs, swipe views, and a navigation drawer • Several elements require the Support Library APIs.
  • 20. Creating Swipe Views with Tabs • Learn how to implement tabs in the action bar and provide horizontal paging (swipe views) to navigate between tabs or left navigationbar. • wipe views provide lateral navigation between sibling screens such as tabs with a horizontal finger gesture (a pattern sometimes known as horizontal paging)
  • 21. Creating Swipe Views with Tabs • <?xml version="1.0" encoding="utf-8"?> <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" /> • To insert child views that represent each page, you need to hook this layout to a PagerAdapter. There are two kinds of adapter you can use:
  • 22. Creating Swipe Views with Tabs • FragmentPagerAdapter – This is best when navigating between sibling screens representing a fixed, small number of pages. • FragmentStatePagerAdapter – This is best for paging across a collection of objects for which the number of pages is undetermined. It destroys fragments as the user navigates to other pages, minimizing memory usage.
  • 23. Creating Swipe Views with Tabs public class CollectionDemoActivity extends FragmentActivity { // When requested, this adapter returns a DemoObjectFragment, // representing an object in the collection. DemoCollectionPagerAdapter mDemoCollectionPagerAdapter; ViewPager mViewPager; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_collection_demo); // ViewPager and its adapters use support library // fragments, so use getSupportFragmentManager. mDemoCollectionPagerAdapter = new DemoCollectionPagerAdapter( getSupportFragmentManager()); mViewPager = (ViewPager) findViewById(R.id.pager); mViewPager.setAdapter(mDemoCollectionPagerAdapter); } }
  • 24. Creating Swipe Views with Tabs public class DemoCollectionPagerAdapter extends FragmentStatePagerAdapter { public DemoCollectionPagerAdapter(FragmentManager fm) { super(fm); } @Override public Fragment getItem(int i) { Fragment fragment = new DemoObjectFragment(); Bundle args = new Bundle(); // Our object is just an integer :-P args.putInt(DemoObjectFragment.ARG_OBJECT, i + 1); fragment.setArguments(args); return fragment; } @Override public int getCount() { return 100; } @Override public CharSequence getPageTitle(int position) { return "OBJECT " + (position + 1); } }
  • 25. Creating Swipe Views with Tabs / Instances of this class are fragments representing a single // object in our collection. public static class DemoObjectFragment extends Fragment { public static final String ARG_OBJECT = "object"; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // The last two arguments ensure LayoutParams are inflated // properly. View rootView = inflater.inflate( R.layout.fragment_collection_object, container, false); Bundle args = getArguments(); ((TextView) rootView.findViewById(android.R.id.text1)).setText( Integer.toString(args.getInt(ARG_OBJECT))); return rootView; } }
  • 26. Add Tabs to the Action Bar • Action bar tabs offer users a familiar interface for navigating between and identifying sibling screens in your app.
  • 27. @Override public void onCreate(Bundle savedInstanceState) { final ActionBar actionBar = getActionBar(); ... // Specify that tabs should be displayed in the action bar. actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); // Create a tab listener that is called when the user changes tabs. ActionBar.TabListener tabListener = new ActionBar.TabListener() { public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) { // show the given tab } public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction ft) { // hide the given tab } public void onTabReselected(ActionBar.Tab tab, FragmentTransaction ft) { // probably ignore this event } }; // Add 3 tabs, specifying the tab's text and TabListener for (int i = 0; i < 3; i++) { actionBar.addTab( actionBar.newTab() .setText("Tab " + (i + 1)) .setTabListener(tabListener)); } }
  • 28. Change Tabs with Swipe Views @Override public void onCreate(Bundle savedInstanceState) { ... // Create a tab listener that is called when the user changes tabs. ActionBar.TabListener tabListener = new ActionBar.TabListener() { public void onTabSelected(ActionBar.Tab tab, FragmentTransaction ft) { // When the tab is selected, switch to the // corresponding page in the ViewPager. mViewPager.setCurrentItem(tab.getPosition()); } ... }; }