I have an app which scans for the Wifi access points and tries to connect to the strongest one. I am trying to get to the pop-up screen(Settings-> Wifi-Settings-> pop up screen after selecting the network that I intend to connect to, to enter user credentials) directly from my app. I know
startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS)
takes me to the Wifi-Settings page, but I need to drill down one more layer on the Wifi-Settings page from my app.
Any suggestions?
Thanks.