|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
public boolean enableWIFI() { WifiManager wifiManager = (WifiManager) this.getSystemService(Context.WIFI_SERVICE); if(wifiManager.isWifiEnabled()){ if(wifiManager.setWifiEnabled(false)) return true; }else{ if(wifiManager.setWifiEnabled(true)) return true; } return false; } |
Filed under: Android
Like this post? Subscribe to my RSS feed and get loads more!




Leave a Reply