问题在于,当我使用下面的源代码时,我仅在2G模式下接收小区ID,如果我切换到3G模式,我有时会收到-1表示HSDPA,或者没有收到任何UMTS。源代码是:
for (int i = 0; i < neighCell.size(); i++) {
try {
NeighboringCellInfo thisCell = neighCell.get(i);
int thisNeighCID = thisCell.getCid();
int thisNeighRSSI = -113 + 2*thisCell.getRssi();
log("Base station "+(i+1)+":"+
"\nCellID: "+thisNeighCID+
"; RSSI: "+thisNeighRSSI+" dBm");
} catch (NumberFormatException e) {
e.printStackTrace();
NeighboringCellInfo thisCell = neighCell.get(i);
log(thisCell.toString());
}
}
有没有办法在3G模式下获得身份证,尤其是UMTS?
答案 0 :(得分:2)
您获得的-1值对应于UNKNOWN_CID常量的值,表示单元格位置不可用。
您可以在API here中确认这一点。
它还声明与您想要获取的信息相关的get方法仅适用于GSM。对于UMTS和CDMA,它将它们视为未知位置。