Wi-Fi / Mobile Network Data Rate

How to get the Wi-Fi / mobile network data rate programmatically in my application. Thanks in advance!

+11
android mobile networking android-wifi
source share
1 answer

Here is the code to get WiFi speed:

WifiManager wifiManager = getApplicationContext().getSystemService(Context.WIFI_SERVICE); WifiInfo wifiInfo = wifiManager.getConnectionInfo(); if (wifiInfo != null) { Integer linkSpeed = wifiInfo.getLinkSpeed(); //measured using WifiInfo.LINK_SPEED_UNITS } 

For mobile network speed see below link:

http://www.gregbugaj.com/?p=47

+14
source share

All Articles