Search code examples
blackberrywifi

BlackBerry: Turning on Wifi in code


Is there a way to enable Wifi from code in BlackBerry OS?

Thx

-- EDIT --

I just wanted to add the code snippet for checking if WiFi is already enabled:

if ( (RadioInfo.getActiveWAFs() & RadioInfo.WAF_WLAN) == RadioInfo.WAF_WLAN ) { 
    // do stuff 
}

Solution

  • You can use the Radio.activateWAFs() method to do this, if you pass WAF_WLAN as a parameter. You can use it to enable or disable each wireless connection on the device.