9

This question is quite similar to this SO question.

What I am currently using is the below code to take the user to setting page.

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

But this takes the user only to the settings page. Shown below in the pic. enter image description here

Instead of this, I would like to take the user to the settings page of my app, where he has the option to turn it on and shows my app description.

enter image description here

Community
  • 1
  • 1
Sriram
  • 8,574
  • 4
  • 21
  • 30

1 Answers1

-1

Refer This DevicePolicyManager

Eg:

if you want start change password

Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD);
startActivity(intent);
Chanaka Weerasinghe
  • 5,404
  • 2
  • 26
  • 39