Tutorial For Android: Turn off, Turn on wifi in android using code tutorial
ExplanationGet the Wifi service from our system
wifiManager = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
Check the our wifi is currently turned on or turned off
if(wifiManager.isWifiEnabled()){
Turn on/off our wifi
wifiManager.setWifiEnabled(<true|false>);
Read full article from Tutorial For Android: Turn off, Turn on wifi in android using code tutorial
No comments:
Post a Comment