Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi guys I want to enable/disable wireless from my android application. How can i do that?

share|improve this question
no duplicate read again! – james dietriq Apr 15 '11 at 11:00

3 Answers

up vote 9 down vote accepted
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.setWifiEnabled(false);

should Work. Or just google It :)

share|improve this answer
thanks i tried but it did not work. – james dietriq Apr 15 '11 at 10:59
it works after adding permission thanks... – james dietriq Apr 15 '11 at 11:19
yes, don't forget to add use permission in your manifest android.permission.CHANGE_WIFI_STATE – Dr Odissey Apr 15 '11 at 13:46

To enable/disable WiFi in your application you need to use WiFiManager class. Create an Object of WiFiManager class to get the services of WiFi.

WifiManager wifi;
wifi=(WifiManager)getSystemService(Context.WIFI_SERVICE);

wifi.setWifiEnabled(false);//Turn off Wifi

wifi.setWifiEnabled(true);//Turn on Wifi

And you have to put the following permissions in AndroidManifest.xml

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

<uses-permission android:name="android.permission.INTERNET" />

<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" />

<uses-permission android:name="android.permission.WAKE_LOCK" />

To get the whole sample code of enable/disable Wifi in android with UI visit this website

share|improve this answer

try this code

 Intent gpsOptionsIntent = new Intent(  android.provider.Settings.ACTION_WIFI_SETTINGS);  
            startActivityForResult(gpsOptionsIntent,0); 
share|improve this answer
thanks but i dont want to open settings. i want to disable or enable directly from my app. – james dietriq Apr 15 '11 at 10:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.