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
PDF
Basics of css3
PDF
Introduction phonegap
PPTX
Mobile testing practices
PDF
Android Design Architecture
PPTX
Lisa's routine
PDF
Actionbar and fragment
PPTX
Effective use of powerpoint
Axure Basic Concepts
Basics of css3
Introduction phonegap
Mobile testing practices
Android Design Architecture
Lisa's routine
Actionbar and fragment
Effective use of powerpoint

Viewers also liked (16)

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

Similar to User experience and interactions design (20)

PPTX
Windows Phone 8 - 3 Building WP8 Applications
PDF
[PBO] Pertemuan 12 - Pemrograman Android
PDF
What's new in android: jetpack compose 2024
PDF
03.Controls in Windows Phone
PPTX
Application Development - Overview on Android OS
PDF
Designing and implementing_android_uis_for_phones_and_tablets
PDF
Ch4 creating user interfaces
PPT
Using Ajax to improve your user experience at Web Directions South 2009
PDF
MVP Community Camp 2014 - How to use enhanced features of Windows 8.1 Store ...
PDF
Prototyping + User Journeys
PDF
Navigation in flutter – how to add stack, tab, and drawer navigators to your ...
PPTX
React Native: Introduction
PPT
Lecture14 abap on line
PPT
Android Tutorial
PPT
Hello Android
PDF
User-centred design
PPTX
Lecture 2 Styling and Layout in React Native.pptx
PDF
Information Architecture & UI Design
PPTX
W1_Lec01_Lec02_Layouts.pptx
PPTX
Android Custom Views
Windows Phone 8 - 3 Building WP8 Applications
[PBO] Pertemuan 12 - Pemrograman Android
What's new in android: jetpack compose 2024
03.Controls in Windows Phone
Application Development - Overview on Android OS
Designing and implementing_android_uis_for_phones_and_tablets
Ch4 creating user interfaces
Using Ajax to improve your user experience at Web Directions South 2009
MVP Community Camp 2014 - How to use enhanced features of Windows 8.1 Store ...
Prototyping + User Journeys
Navigation in flutter – how to add stack, tab, and drawer navigators to your ...
React Native: Introduction
Lecture14 abap on line
Android Tutorial
Hello Android
User-centred design
Lecture 2 Styling and Layout in React Native.pptx
Information Architecture & UI Design
W1_Lec01_Lec02_Layouts.pptx
Android Custom Views
Ad

More from Rakesh Jha (9)

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

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()); } ... }; }