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();
For mobile network speed see below link:
http://www.gregbugaj.com/?p=47
Hariharan
source share