I am trying to make a simple app that tells me the rssi values of the 5 strongest wifi networks. I don't need to connect to any of the networks, just want to know the rssi's. At the moment I'm using the following bit of code:
wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
int info = wifi.getConnectionInfo().getRssi();
textStatus.setText("WiFi Rssi: " + info);
However, this only displays the rssi value of the network I am connected to.
Is there a way of getting this information for other networks?