Skip to content

Instantly share code, notes, and snippets.

@ataulm
Last active June 16, 2018 20:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ataulm/04923e1ecf8f957c5c3ed63b0f900626 to your computer and use it in GitHub Desktop.
Save ataulm/04923e1ecf8f957c5c3ed63b0f900626 to your computer and use it in GitHub Desktop.
whats next a11y services skeleton
class SkipperAccessibilityService : AccessibilityService() {
override fun onInterrupt() {
// no op - this has no feedback so there'll be nothing to interrupt
}
override fun onAccessibilityEvent(event: AccessibilityEvent) {
// TODO: scan view hierarchy for clickable words
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment