8

As mentioned here I can open Android Accessibility Settings page; I know I can open my app Accessibility Settings directly with this code:

Intent intent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS);
startActivityForResult(intent, 0);

But how can I start the Accessibility Settings Page of my own APP in Android? I want to guide user directly to my application Accessibility settings page to grant permissions.

I don't want to use adb and I can't root my device. I couldn't find any working solution; Any suggestions?

Nathaniel Flick
  • 2,697
  • 2
  • 20
  • 28
ET1992
  • 91
  • 8

1 Answers1

0

It is impossible.

The user can only enable it manually.

  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Apr 20 '22 at 09:28