-1

Any one help me out to fetch wifi Signal strength ?

Bhavnish
  • 42
  • 1
  • 6

1 Answers1

-1

You can get the signal in levels by using:

WifiManager wifi = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
int levels = 5;
WifiInfo wifiInfo = wifi.getConnectionInfo();
int level = WifiManager.calculateSignalLevel(wifiInfo.getRssi(), numberOfLevels);

Refer to this answer for further help.