How To Get Previously Associated Wifi Networks?
Is there any way to get the previously associated Wifi networks for an Android device? Ultimately, I want to bring up a list (e.g., a spinner) that has all of the networks that th
Solution 1:
What you are looking for is: https://developer.android.com/reference/android/net/wifi/WifiManager.html#getConfiguredNetworks()
This will get you all the previously associated networks as they will have to have been configured in order to connect to them.
Post a Comment for "How To Get Previously Associated Wifi Networks?"