SlideShare a Scribd company logo
1 of 24
Mobile accessibility
How to become socially responsible mobile developer?
Konstantin Loginov
About me
 7,5 years in Mobile development:
 Windows Mobile
 webOS
 Windows Phone 7/8
 iOS (native/Xamarin)
 Android
Current Position: Android Tech Lead at Microsoft
klogi@microsoft.com / https://no.linkedin.com/in/klogi
Why do I care about accessibility?
• Social responsibility – it’s just right
• Reaching out new users
 3B of the Internet users in 2015
 1.91B of smartphones users in 2015
• 2.56B in 2018
 More than 1B of Android users
 1B(every 7th!) have some form of disability
• 285M of visually impaired people
• 1 of 20 Americans are deaf or hard of hearing
 Getting better app’s ratings
 Extra chance to be featured by Apple
• Legal obligations
When we work on making our devices
accessible by the blind, I don't consider
the bloody ROI
Tim Cook
What makes app accessible?
 Every user interface element with which users can interact is accessible. This
includes elements that merely supply information, such as static text, as well as
controls that perform actions.
 All accessible elements supply accurate and helpful information.
Mobile accessibility – what does it involve?
 VoiceOver/Talkback – spoken feedback to help blind and low-vision users
 Switch Control/Switch Access – navigate through onscreen items and perform
actions using a Bluetooth-enabled switch hardware for people with impaired
physical and motor skills
 Large text, color inversion
 Zoom / Magnification gestures – to zoom in screen’s content
 Siri / Google Now
iOS vs. Android
Wall of Shame
Wall of Fame
Fall of Fame and Shame videos
https://www.dropbox.com/sh/ledinbtf6dq864k/AADC_
mVo4WRDTvmZ4It9jtEWa?dl=0
Mobile Accessibility Practices
If you are following the rules –
application is already accessible!
Android practices
 Do not use small text sizes
 Do not use “dp” as a textSize, only “sp”
 Use contrast colors for text and background
 Carefully use third-party libraries for UI work
 Give a meaningful contentDescriptions for ImageViews, Buttons, CheckBox, etc.
Android practices
 Don’t forget “state_focused” in selector
 If element is not essential for TalkBack mark it as not important for accessibility
(API level 16+):
 Review & modified, if needed, focus order or disable focusability with layout
attributes: nextFocusDown,.., nextFocusUp, focusable
 Go through the checklist before every release:
http://developer.android.com/guide/topics/ui/accessibility/checklist.html
Android practices
 How to check if Talkback is turned on (API level 14+):
public static boolean isScreenReaderActive(Context context) {
AccessibilityManager accessibilityManager = (
AccessibilityManager) context.getSystemService(Context.
ACCESSIBILITY_SERVICE);
return accessibilityManager.isTouchExplorationEnabled();
}
 How to check if View in Talkback’s focus (API level 21+):
View.isAccessibilityFocused();
 Read more about accessibility for Android:
http://developer.android.com/guide/topics/ui/accessibility/index.html
iOS practices
 Use Apple’s build-in apps as an example
 Give a meaningful Titles/Labels, Hints for UIImageViews, UIButtons, UISwitches, etc.
 Review Traits and use the right ones
It can be done in Interface Builder or in the code-behind
 Have hints for page titles in UITabBarController
• Label: Favorites
• Hint: Shows documents you've added to your favorites.
iOS practices
 Make custom individual Views accessible
 Use Accessibility Inspector on iOS Simulator during
development
Read more:
https://developer.apple.com/library/ios/technotes/TestingAcces
sibilityOfiOSApps/TestAccessibilityiniOSSimulatorwithAccessibili
tyInspector/TestAccessibilityiniOSSimulatorwithAccessibilityInsp
ector.html#//apple_ref/doc/uid/TP40012619-CH4-SW1
iOS practices
 Use UIAccessibilityAction
 (BOOL)accessibilityScroll:(UIAccessibilityScrollDirection)direction - scrolls screen content
in an application-specific way
Required UIAccessibilityPageScrolledNotification with the new page status (such as “Page 1 of 2”).
 Custom control with is adjustable element has to:
 Include the UIAccessibilityTraitAdjustable trait
 Implement accessibilityIncrement and accessibilityDecrement methods
iOS practices
 Use UIAccessibilityCustomAction (iOS 8+)
Common for both platforms practices
 Make all people productive
 Don’t reinvent the wheel – stick to platform-specific navigation model
 No audio-only feedback
 VoiceOver/TalkBack texts have to be also localized
 Test the app
How can I test my Android app?
 Enable accessibility on your device:
How can I test my Android app?
 Test: Directional controls – app must be operable without touchscreen
 Test: TalkBack audio promts – UI controls have clear and accurate audio
descriptions
 Test: Touchable control size – all actionable controls bigger, than 48x48 dp
 Test: In-app gestures work with Talkback enabled
 Test: no audio-only feedback
How can I test my iOS app?
 Again, use Accessibility Inspector
 Enable accessibility on your device:
How can I test my iOS app?
 Test: Directional controls – app must be operable without touchscreen
 Test: VoiceOver audio promts – UI controls have clear and accurate audio
descriptions
 To avoid cheating – enable Screen Curtain, so you can rely only VoiceOver speaks
 Test: Touchable control size – all actionable controls bigger, than 44x44 px
 Test: no audio-only feedback
Instead of conclusion
 Accessibility is not an investment – it’s just adopting right coding-practices
 Accessibility does not impact your ability to innovate and create beautiful apps
 It’s easy!
 Xamarin claims to have full support of accessibility features.
klogi@microsoft.com / https://no.linkedin.com/in/klogi

More Related Content

What's hot

Gitansh_Gupta_Resume
Gitansh_Gupta_ResumeGitansh_Gupta_Resume
Gitansh_Gupta_Resume
Gitansh Gupta
 
BHAGWANT UNIVERSITY
BHAGWANT UNIVERSITYBHAGWANT UNIVERSITY
BHAGWANT UNIVERSITY
Suraj Singh
 
My i-app questionnaire
My i-app questionnaireMy i-app questionnaire
My i-app questionnaire
aknowles20
 
Android_Workshop
Android_WorkshopAndroid_Workshop
Android_Workshop
Senthil ACS
 
Automation Proposal_V1.0
Automation Proposal_V1.0Automation Proposal_V1.0
Automation Proposal_V1.0
Dao Nhỏ
 

What's hot (20)

Girls Can Code Mobile App Day 1
Girls Can Code Mobile App Day 1Girls Can Code Mobile App Day 1
Girls Can Code Mobile App Day 1
 
Gitansh_Gupta_Resume
Gitansh_Gupta_ResumeGitansh_Gupta_Resume
Gitansh_Gupta_Resume
 
BHAGWANT UNIVERSITY
BHAGWANT UNIVERSITYBHAGWANT UNIVERSITY
BHAGWANT UNIVERSITY
 
A Guide for Anyone Who Wants to Turn App Development Idea into Reality
A Guide for Anyone Who Wants to Turn App Development Idea into RealityA Guide for Anyone Who Wants to Turn App Development Idea into Reality
A Guide for Anyone Who Wants to Turn App Development Idea into Reality
 
Eindhoven Mobile Development First Meetup Slides
Eindhoven Mobile Development First Meetup SlidesEindhoven Mobile Development First Meetup Slides
Eindhoven Mobile Development First Meetup Slides
 
FirstMeetupSlides
FirstMeetupSlidesFirstMeetupSlides
FirstMeetupSlides
 
My i-app questionnaire
My i-app questionnaireMy i-app questionnaire
My i-app questionnaire
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogy
 
Ionic
IonicIonic
Ionic
 
Android app Presentation and Documentation Vignan buddy presentation
Android app Presentation and Documentation Vignan buddy presentationAndroid app Presentation and Documentation Vignan buddy presentation
Android app Presentation and Documentation Vignan buddy presentation
 
Prototype Development in Mobile-Learning Design Research
Prototype Development in Mobile-Learning Design ResearchPrototype Development in Mobile-Learning Design Research
Prototype Development in Mobile-Learning Design Research
 
Project presentation -chady abidi
Project presentation -chady abidiProject presentation -chady abidi
Project presentation -chady abidi
 
Android_Workshop
Android_WorkshopAndroid_Workshop
Android_Workshop
 
Study time app presentation
Study time app presentationStudy time app presentation
Study time app presentation
 
"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni
 
What are the challenges in i os app development
What are the challenges in i os app developmentWhat are the challenges in i os app development
What are the challenges in i os app development
 
Mobile App Testing by Mark Wilson
Mobile App Testing by Mark WilsonMobile App Testing by Mark Wilson
Mobile App Testing by Mark Wilson
 
Automation Proposal_V1.0
Automation Proposal_V1.0Automation Proposal_V1.0
Automation Proposal_V1.0
 
Ux design mistakes to avoid mobile app development guide
Ux design mistakes to avoid mobile app development guideUx design mistakes to avoid mobile app development guide
Ux design mistakes to avoid mobile app development guide
 
Process of iOS App Development
Process of iOS App DevelopmentProcess of iOS App Development
Process of iOS App Development
 

Similar to Mobile Accessibility - How To Become Socially Responsible Mobile Developer

Native app testing methodology final
Native app testing methodology   finalNative app testing methodology   final
Native app testing methodology final
vjatin
 
Vinodkumar_Testconsultant_sandisk
Vinodkumar_Testconsultant_sandiskVinodkumar_Testconsultant_sandisk
Vinodkumar_Testconsultant_sandisk
Vinod Kumar
 
Devmento발표100525
Devmento발표100525Devmento발표100525
Devmento발표100525
jinwook shin
 

Similar to Mobile Accessibility - How To Become Socially Responsible Mobile Developer (20)

Droidcon2014 - Android UX
Droidcon2014 - Android UXDroidcon2014 - Android UX
Droidcon2014 - Android UX
 
Everything You Need to Know About Testing Foldable Phones
Everything You Need to Know About Testing Foldable PhonesEverything You Need to Know About Testing Foldable Phones
Everything You Need to Know About Testing Foldable Phones
 
20170302 tryswift tasting_tests
20170302 tryswift tasting_tests20170302 tryswift tasting_tests
20170302 tryswift tasting_tests
 
10 stages of mobile app development process 2022
10 stages of mobile app development process 202210 stages of mobile app development process 2022
10 stages of mobile app development process 2022
 
hema ppt (2).pptx
hema ppt (2).pptxhema ppt (2).pptx
hema ppt (2).pptx
 
Vc info park
Vc  info parkVc  info park
Vc info park
 
Tools and Techniques for mobile learning
Tools and Techniques for mobile learningTools and Techniques for mobile learning
Tools and Techniques for mobile learning
 
iPhone Lunch And Learn
iPhone Lunch And LearniPhone Lunch And Learn
iPhone Lunch And Learn
 
Native app testing methodology final
Native app testing methodology   finalNative app testing methodology   final
Native app testing methodology final
 
Mobile Programming - 9 Profile UI, Navigation Basic and Splash Screen
Mobile Programming - 9 Profile UI, Navigation Basic and Splash ScreenMobile Programming - 9 Profile UI, Navigation Basic and Splash Screen
Mobile Programming - 9 Profile UI, Navigation Basic and Splash Screen
 
Lean Startup Machine - Mobile App Development
Lean Startup Machine - Mobile App DevelopmentLean Startup Machine - Mobile App Development
Lean Startup Machine - Mobile App Development
 
Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011Sogeti - Android tech track presentation - 24 february 2011
Sogeti - Android tech track presentation - 24 february 2011
 
Notes Unit3.pptx
Notes Unit3.pptxNotes Unit3.pptx
Notes Unit3.pptx
 
Vinodkumar_Testconsultant_sandisk
Vinodkumar_Testconsultant_sandiskVinodkumar_Testconsultant_sandisk
Vinodkumar_Testconsultant_sandisk
 
Mobile Application Development and Types(1)
Mobile Application Development and Types(1)Mobile Application Development and Types(1)
Mobile Application Development and Types(1)
 
Resume_iOSDev
Resume_iOSDevResume_iOSDev
Resume_iOSDev
 
Essential Skills Your Next App Development Company Must Have.pdf
Essential Skills Your Next App Development Company Must Have.pdfEssential Skills Your Next App Development Company Must Have.pdf
Essential Skills Your Next App Development Company Must Have.pdf
 
Pick Your Poison – Mobile Web, Native, or Hybrid? - Denver Startup Week - Oct...
Pick Your Poison – Mobile Web, Native, or Hybrid? - Denver Startup Week - Oct...Pick Your Poison – Mobile Web, Native, or Hybrid? - Denver Startup Week - Oct...
Pick Your Poison – Mobile Web, Native, or Hybrid? - Denver Startup Week - Oct...
 
Pick Your Poison – Mobile Web, Native or Hybrid?
Pick Your Poison – Mobile Web, Native or Hybrid?Pick Your Poison – Mobile Web, Native or Hybrid?
Pick Your Poison – Mobile Web, Native or Hybrid?
 
Devmento발표100525
Devmento발표100525Devmento발표100525
Devmento발표100525
 

Recently uploaded

Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
ankushspencer015
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 

Recently uploaded (20)

chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 

Mobile Accessibility - How To Become Socially Responsible Mobile Developer

  • 1. Mobile accessibility How to become socially responsible mobile developer? Konstantin Loginov
  • 2. About me  7,5 years in Mobile development:  Windows Mobile  webOS  Windows Phone 7/8  iOS (native/Xamarin)  Android Current Position: Android Tech Lead at Microsoft klogi@microsoft.com / https://no.linkedin.com/in/klogi
  • 3. Why do I care about accessibility? • Social responsibility – it’s just right • Reaching out new users  3B of the Internet users in 2015  1.91B of smartphones users in 2015 • 2.56B in 2018  More than 1B of Android users  1B(every 7th!) have some form of disability • 285M of visually impaired people • 1 of 20 Americans are deaf or hard of hearing  Getting better app’s ratings  Extra chance to be featured by Apple • Legal obligations When we work on making our devices accessible by the blind, I don't consider the bloody ROI Tim Cook
  • 4. What makes app accessible?  Every user interface element with which users can interact is accessible. This includes elements that merely supply information, such as static text, as well as controls that perform actions.  All accessible elements supply accurate and helpful information.
  • 5. Mobile accessibility – what does it involve?  VoiceOver/Talkback – spoken feedback to help blind and low-vision users  Switch Control/Switch Access – navigate through onscreen items and perform actions using a Bluetooth-enabled switch hardware for people with impaired physical and motor skills  Large text, color inversion  Zoom / Magnification gestures – to zoom in screen’s content  Siri / Google Now
  • 9. Fall of Fame and Shame videos https://www.dropbox.com/sh/ledinbtf6dq864k/AADC_ mVo4WRDTvmZ4It9jtEWa?dl=0
  • 10. Mobile Accessibility Practices If you are following the rules – application is already accessible!
  • 11. Android practices  Do not use small text sizes  Do not use “dp” as a textSize, only “sp”  Use contrast colors for text and background  Carefully use third-party libraries for UI work  Give a meaningful contentDescriptions for ImageViews, Buttons, CheckBox, etc.
  • 12. Android practices  Don’t forget “state_focused” in selector  If element is not essential for TalkBack mark it as not important for accessibility (API level 16+):  Review & modified, if needed, focus order or disable focusability with layout attributes: nextFocusDown,.., nextFocusUp, focusable  Go through the checklist before every release: http://developer.android.com/guide/topics/ui/accessibility/checklist.html
  • 13. Android practices  How to check if Talkback is turned on (API level 14+): public static boolean isScreenReaderActive(Context context) { AccessibilityManager accessibilityManager = ( AccessibilityManager) context.getSystemService(Context. ACCESSIBILITY_SERVICE); return accessibilityManager.isTouchExplorationEnabled(); }  How to check if View in Talkback’s focus (API level 21+): View.isAccessibilityFocused();  Read more about accessibility for Android: http://developer.android.com/guide/topics/ui/accessibility/index.html
  • 14. iOS practices  Use Apple’s build-in apps as an example  Give a meaningful Titles/Labels, Hints for UIImageViews, UIButtons, UISwitches, etc.  Review Traits and use the right ones It can be done in Interface Builder or in the code-behind  Have hints for page titles in UITabBarController • Label: Favorites • Hint: Shows documents you've added to your favorites.
  • 15. iOS practices  Make custom individual Views accessible  Use Accessibility Inspector on iOS Simulator during development Read more: https://developer.apple.com/library/ios/technotes/TestingAcces sibilityOfiOSApps/TestAccessibilityiniOSSimulatorwithAccessibili tyInspector/TestAccessibilityiniOSSimulatorwithAccessibilityInsp ector.html#//apple_ref/doc/uid/TP40012619-CH4-SW1
  • 16. iOS practices  Use UIAccessibilityAction  (BOOL)accessibilityScroll:(UIAccessibilityScrollDirection)direction - scrolls screen content in an application-specific way Required UIAccessibilityPageScrolledNotification with the new page status (such as “Page 1 of 2”).  Custom control with is adjustable element has to:  Include the UIAccessibilityTraitAdjustable trait  Implement accessibilityIncrement and accessibilityDecrement methods
  • 17. iOS practices  Use UIAccessibilityCustomAction (iOS 8+)
  • 18. Common for both platforms practices  Make all people productive  Don’t reinvent the wheel – stick to platform-specific navigation model  No audio-only feedback  VoiceOver/TalkBack texts have to be also localized  Test the app
  • 19. How can I test my Android app?  Enable accessibility on your device:
  • 20. How can I test my Android app?  Test: Directional controls – app must be operable without touchscreen  Test: TalkBack audio promts – UI controls have clear and accurate audio descriptions  Test: Touchable control size – all actionable controls bigger, than 48x48 dp  Test: In-app gestures work with Talkback enabled  Test: no audio-only feedback
  • 21. How can I test my iOS app?  Again, use Accessibility Inspector  Enable accessibility on your device:
  • 22. How can I test my iOS app?  Test: Directional controls – app must be operable without touchscreen  Test: VoiceOver audio promts – UI controls have clear and accurate audio descriptions  To avoid cheating – enable Screen Curtain, so you can rely only VoiceOver speaks  Test: Touchable control size – all actionable controls bigger, than 44x44 px  Test: no audio-only feedback
  • 23. Instead of conclusion  Accessibility is not an investment – it’s just adopting right coding-practices  Accessibility does not impact your ability to innovate and create beautiful apps  It’s easy!  Xamarin claims to have full support of accessibility features.