Skip to content

Android App Accessibility

Sharina Stubbs edited this page Nov 14, 2019 · 4 revisions

Use the android accessiblity docs to check off accessiblity to make sure they are hit properly.

Can write an espresso test for accessibility

@BeforeClass
public static void enableAccessibilityChecks(){
  AccessibilityChecks.enable();
}

In the Attributes panel to the right, you can describe what a button does, with contentDescription.

Also, remember about TalkBack - go through the tutorial first!! Note it may be tough with disabeling it once you start the app...

Resources

Clone this wiki locally