'How to open Accessibility Settings of my app programmatically?

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?



Solution 1:[1]

It is impossible.

The user can only enable it manually.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Shahin Sadeghi