如何获得Internet Speed Android

时间:2015-04-07 10:35:25

标签: android android-wifi

我需要知道我在我的应用程序中使用的速度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来自何处和何处?

0 个答案:

没有答案