tags:

views:

98

answers:

1

Hi, Is it possible to toggle WiFi radio (On/Off) programatically on android phones? thanks!

+4  A: 

Have a look at the WifiManager: http://developer.android.com/reference/android/net/wifi/WifiManager.html

Specifically:

boolean setWifiEnabled(boolean enabled)
    Enable or disable Wi-Fi.

aioobe