Checking Wi-Fi enabled or not on Android
What would the code be for checking whether the Wi-Fi is enabled or not?
Solution 1:
WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
if (wifiManager.isWifiEnabled()) {
// wifi is enabled
}
For details check here
Solution 2:
The above answers work fine. But don't forget to add the right permissions in the Manifest:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
Hope it helps ..