在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。
答案 0 :(得分:0)