I am using the following code to calcualte wifi signals strength:
List<ScanResult> results = wifiDemo.wifi.getScanResults();
for(int i=0;i<results.size();i++)
{
int signallevel=WifiManager.calculateSignalLevel(result.level,10);
}
But it is returning the same value for all the wifi acess points. Can anyone please tell me what I'm doing wrong?