Friday, February 10, 2012

How to enable and disable Wifi in android through code?

The WifiManager can be used to enable and disable wifi. Where 'enabled' is a boolean. 
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.setWifiEnabled(enabled);

No comments:

Post a Comment