Skip to content Skip to sidebar Skip to footer

How To Direct Users For Enabling Accessibility Service For My App

I know It's impossible to enable the Accessibility service for apps programmatically, so I'd like to direct users to this screen: System settings --> Accessibility --> app na

Solution 1:

You can get them to the Accessibility screen on most devices using ACTION_ACCESSIBILITY_SETTINGS. However:

  • that may not work on all devices, so you will want to just send them to Settings as a fallback, if you get an ActivityNotFoundException

  • there is no way to get them straight to any given app, let alone the enable/disable screen

Post a Comment for "How To Direct Users For Enabling Accessibility Service For My App"