List cellInfos = (List) this.telephonyManager.getAllCellInfo();
对于( cellInfo cellInfo: cellInfos) { CellInfoGsm cellInfoGsm = (CellInfoGsm) cellInfo;
CellIdentityGsm cellIdentity = cellInfoGsm.getCellIdentity();
CellSignalStrengthGsm cellSignalStrengthGsm = cellInfoGsm.getCellSignalStrength();
Log.d("cell", "registered: "+cellInfoGsm.isRegistered());
Log.d("cell", cellIdentity.toString());
Log.d("cell", cellSignalStrengthGsm.toString());}
发布于 2014-03-14 17:46:50
下面是解决方案Click Here
https://stackoverflow.com/questions/22400983
复制相似问题