-2
Androidでモバイルデータ信号の速度をkbpsで得る方法??????Androidでモバイルデータ信号の速度を取得する方法
TelephonyManager telephonyManager = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
CellInfoGsm cellinfogsm = (CellInfoGsm)telephonyManager.getAllCellInfo().get(0);
CellSignalStrengthGsm cellSignalStrengthGsm = cellinfogsm.getCellSignalStrength();
cellSignalStrengthGsm.getDbm();
この[質問]を見てください(http://stackoverflow.com/questions/19154992/getting-data-speed-of-wifi-mobile-network-programatically) – redead
海私は携帯電話のデータ速度だけではなく、無線LANと電話信号をredeadしたい – Rakhiii