WifiManager myWifiMananger = (WifiManager) getSystemService(WIFI_SERVICE); WifiInfo myNetInfo = myWifiMananger.getConnectionInfo(); showIp.append(changeIp(myNetInfo.getIpAddress()) + " \n"); showIp.append(myNetInfo.getSSID() + " "); List<ScanResult> scanList = myWifiMananger.getScanResults(); for(ScanResult element : scanList){ showIp.append(element.SSID + " Level: " + element.level + " freq : " + element.frequency + " Cap: " + element.capabilities + "\n"); } //DONT forget that the getIpAddress returns an int value. Convert it to string : public String changeIp(int ipAddress){ return String.format("%d.%d.%d.%d", (ipAddress & 0xff), (ipAddress >> 8 & 0xff), (ipAddress >> 16 & 0xff), (ipAddress >> 24 & 0xff)); }
*** VERY IMPORTANT : To use this you need to add couple of lines to android manifest(XML file -> AndroidManifest.xml).
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
No comments:
Post a Comment