我正在使用
cellLocation=telephonyManager.getCellLocation();
if(cellLocation instanceof GsmCellLocation) {
//get cid
}else if(cellLocation instanceof CDMACellLocation){
//get cid
}
获取gsm和cdma的单元格信息。
我不确定在lte和wcdma手机上会发生什么?由于我有3G手机,所以我只能确保它适用于3G网络。