Android app: open my app’s accessibility settings page

This question is very similar to this SO question .

I am currently using the code below so the user can set the page.

Intent dummyIntent = new Intent(android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS); startActivity(dummyIntent, 0); 

But this displays the user only on the settings page. The following is shown in fig. enter image description here

Instead, I would like to go to the settings page of my application, where he has the opportunity to enable it and show a description of my application.

enter image description here

+8
source share
1 answer

See This DevicePolicyManager

For instance:

if you want to start changing your password

 Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD); startActivity(intent); 
0
source

All Articles