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

Is there any way to get all available wifi networks on thirdparty application. After doing a lot off googling i got codes that do this but after installing the app user need to do mannual setting.. I have no need of this.

I wants when i install my app its only show the available(SSID) networks without any settings.

share|improve this question
possible duplicate of Scan for available Wi-Fi networks on BlackBerry – Prof. Falken May 9 '12 at 13:16

1 Answer

//use following function

 public boolean isWiFiEnable()
    {
        if( WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED )
        {
            return true;
        }

        return false;
    }
share|improve this answer
Thanks Hrushikesh Salkade for your response,but thats not my question. This method is for to check the connectivity status......... I want to get the list of available wifi networks in range programmatically ,without any mannual setting through user. – Sachin Tyagi May 10 '12 at 7:40
Thanks H. Salkade – Sachin Tyagi May 14 '12 at 6:11

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.