I want to add a link tag in a webpage, and when user clicks it through an android device browser, I hope the android wifi settings interface would open. I've tried following adb command and it worked:
adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings
and I tried to transform the command into url scheme, after reading Android Intents with Chrome, I tried with code below:
<a href="intent:#Intent;action=android.intent.action.MAIN;component=com.android.settings/.Settings;end">Open Wifi Settings</a>
it still won't work.
Could anyone help me? Thank you!