我想得到这个information.For,我写了以下代码,但它不工作。
TelephonyManager telephonyManager = (TelephonyManager)this.getSystemService(Context.TELEPHONY_SERVICE);
// for example value of first element
CellInfoGsm cellinfogsm = (CellInfoGsm)telephonyManager.getAllCellInfo().get(0);
CellSignalStrengthGsm cellSignalStrengthGsm = cellinfogsm.getCellSignalStrength();
int Mrssi = cellSignalStrengthGsm.getDbm();是否有可能在API级别低于17的情况下获得此值?请帮帮忙。
发布于 2014-10-14 12:38:46
您需要创建一个PhoneStateListener并为此处理onSignalStrengthChanged回调,并覆盖onSignalStrengthsChanged(SignalStrength signalStrength)方法。
你可以在这里找到更多信息...
https://stackoverflow.com/questions/26352594
复制相似问题