2016-12-03 74 views
0

我正在製作一個應用程序,我需要獲得互聯網速度!我可以找到WifiInfo clasd的無線速度,但我找不到任何代碼或庫來獲取移動數據速度!
我應該使用庫還是Android中有類可用?獲得互聯網速度(WIFI和數據)

回答

1

這是很難精確地確定移動速度,但你可以根據連接類型(EDGE,HSPA)估計速度:

public static boolean isConnectedFast(final Context context) { 
    final NetworkInfo info = getNetworkInfo(context); 
    return (info != null) && info.isConnected() && isConnectionFast(info.getType(), info.getSubtype()); 
} 

public static boolean isConnectionFast(final int type, final int subType) { 
    if (type == ConnectivityManager.TYPE_WIFI) { 
     return true; 
    } else if (type == ConnectivityManager.TYPE_MOBILE) { 
     switch (subType) { 
      case TelephonyManager.NETWORK_TYPE_1xRTT: 
       return false; // ~ 50-100 kbps 
      case TelephonyManager.NETWORK_TYPE_CDMA: 
       return false; // ~ 14-64 kbps 
      case TelephonyManager.NETWORK_TYPE_EDGE: 
       return false; // ~ 50-100 kbps 
      case TelephonyManager.NETWORK_TYPE_EVDO_0: 
       return true; // ~ 400-1000 kbps 
      case TelephonyManager.NETWORK_TYPE_EVDO_A: 
       return true; // ~ 600-1400 kbps 
      case TelephonyManager.NETWORK_TYPE_GPRS: 
       return false; // ~ 100 kbps 
      case TelephonyManager.NETWORK_TYPE_HSDPA: 
       return true; // ~ 2-14 Mbps 
      case TelephonyManager.NETWORK_TYPE_HSPA: 
       return true; // ~ 700-1700 kbps 
      case TelephonyManager.NETWORK_TYPE_HSUPA: 
       return true; // ~ 1-23 Mbps 
      case TelephonyManager.NETWORK_TYPE_UMTS: 
       return true; // ~ 400-7000 kbps 
     /* 
     * Above API level 7, make sure to set android:targetSdkVersion 
     * to appropriate level to use these 
     */ 
      case TelephonyManager.NETWORK_TYPE_EHRPD: // API level 11 
       return true; // ~ 1-2 Mbps 
      case TelephonyManager.NETWORK_TYPE_EVDO_B: // API level 9 
       return true; // ~ 5 Mbps 
      case TelephonyManager.NETWORK_TYPE_HSPAP: // API level 13 
       return true; // ~ 10-20 Mbps 
      case TelephonyManager.NETWORK_TYPE_IDEN: // API level 8 
       return false; // ~25 kbps 
      case TelephonyManager.NETWORK_TYPE_LTE: // API level 11 
       return true; // ~ 10+ Mbps 
      // Unknown 
      case TelephonyManager.NETWORK_TYPE_UNKNOWN: 
      default: 
       return false; 
     } 
    } else { 
     return false; 
    } 
} 

請參閱https://stackoverflow.com/a/8548926/6908755瞭解完整的代碼。

0

使用此代碼

WifiManager wifiManager = (WifiManager)context.getSystemService(Context.WIFI_SERVICE); 
int linkSpeed = wifiManager.getConnectionInfo().getRssi(); 
0

有沒有Android的lib或類提供此。 wifiInfo.getLinkSpeed返回網絡的最大速度,它會隨時變化。

雖然我在FB SDK中找到了一些東西來獲得互聯網的速度。

ConnectionQuality cq = ConnectionClassManager.getInstance().getCurrentBandwidthQuality(); 

這裏的GitHub庫: https://github.com/facebook/network-connection-class