From Web application that consists of only web pages. In that, I need to open android settings activity. How to invoke it?
Invoke android settings from web page URL?
19.4k Views Asked by Marsh K At
2
There are 2 best solutions below
0

Based on:
- https://developer.chrome.com/multidevice/android/intents
- https://developer.android.com/reference/android/provider/Settings#ACTION_SETTINGS
I feel like it should be possible with something like
<a href="intent:#Intent;action=android.settings.SETTINGS;end;">open settings</a>
but it does not work, for some reason I can't figure out.
I wanted to post the same question with my failing solution and ask what was wrong with my solution.
I guess I'll just post an wrong answer instead.
edit: here's another reference:
Open android application from a web page
edit2: I did some more digging and I think I found out what's wrong with this solution:
Opening Location Settings Activity from Chrome on Android
and its answer:
https://stackoverflow.com/a/46175726/10028142
You cannot invoke Android Settings from web unless you have app which handle custom uri scheme.
to invoke application in android from Webpage there needs to be app which handles call from particular Uri Scheme in android app on android device.
you can create android app which handle custom uri scheme like below for activity to be invoked when url is visited in browser.
myapp://opensettings
if application is exist on android device which handle above uri scheme then you can call setting dialog from your android app after user redirect to myapp://opensettings url in browser.