我需要知道我在我的应用程序中使用的速度Internet: 这是我的代码:
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wifi.setWifiEnabled(true);
int speedMbps = 0;
if (wifi.getConnectionInfo() != null) {
speedMbps = wifi.getConnectionInfo().getLinkSpeed();
}
所以speedMbps alwys给我64 Mbps甚至我使用我发现4,8Mbps的网站测试我的速度互联网所以这个值64来自何处和何处?