Android app: Take user to Accessibility settings page of my app
Asked Answered
S

1

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

Subternatural answered 11/10, 2015 at 14:54 Comment(4)
Did you find any solution for it?Pantaloon
No, it seems like android doesn't allow itSubternatural
Android does allows it. I have seen many applications do this. I will find out and post the answerEpigastrium
@Vishaljotshi it's been almost 6 years, did you find out?Ecker
D
-1

Refer This DevicePolicyManager

Eg:

if you want start change password

Intent intent = new Intent(DevicePolicyManager.ACTION_SET_NEW_PASSWORD);
startActivity(intent);
Darrow answered 8/7, 2019 at 3:31 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.