So I've been having some trouble figuring this stuff out for myself and I'm rather new at Android so would really appreciate some help on this.
I have taken a look at answers such as these on SO: How do I connect to a specific Wi-Fi network in Android programmatically?
and I see that you have to configure a network, manually put in the password, and add it to the list of configured networks, etc.
I was wondering what one would do in the case of multiple wifi already being configured/saved by the user, and choosing a specific one to connect to programmatically? Does this mean that they already appear in the getConfiguredNetworks() method call? If so, how would one go about executing .enableNetwork(int netId, boolean disableOthers)?
As a side note, both of those functions are part of the WifiManager class. Hopefully this all made sense!
wifiManager.enableNetwork(wifiConfiguration.networkId, true);I took the answer by racuevji and elaborated on it. Some more permissions are required and if the wifi is off, the solution below also switches it on:
where activity_main.xml:
and AndroidManifest.xml: