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
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use the
Radio.activateWAFs()method to do this, if you passWAF_WLANas a parameter. You can use it to enable or disable each wireless connection on the device.