从CellInfoLte获取位置区域代码和单元格ID

时间:2016-04-25 12:31:55

标签: android

getAllCellInfo()上调用TelephonyManager方法后,我会得到CellInfo的列表。 问题是:如果CellInfo的实例是CellInfoLte,我怎样才能从中获取单元格id和lac代码?

我试过了getCi()。但价值似乎太大了

            CellInfoLte infoLte = (CellInfoLte) info;
            CellIdentityLte cellIdentity = infoLte.getCellIdentity();
            CellSignalStrengthLte cellSignalStrength = infoLte.getCellSignalStrength();
            cid = cellIdentity.getCi();
            lac = cellIdentity.getTac();
            ss = cellSignalStrength.getDbm();

PS:我也希望从CellInfoCdma获得cid。

1 个答案:

答案 0 :(得分:0)

来自CellInfoCdma的Cid和Lac代码是不可能的。(实际上CDMA没有提供这些只有GSM提供这个)