Search code examples
androidandroid-intentintentfilter

Launch Android settings app through url intent filter


Is there a way to launch the Android settings panel from a web app using an url like: settings://

I've been looking for a comprehensive list of Android intent filter urls for quite sometime but can't find it.

Thanks


Solution

  • Not using an intent filter, no. But there is a native intent String you can use here. Something like ACTION_SETTINGS will probably bring you to the main settings screen, and any one of the other ACTION_'s will bring you to more specific panels within the Settings app.