问题是,当我使用下面的源代码时,我仅在2G模式下收到小区ID,如果我切换到3G模式,则我有时收到的HSDPA为-1或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模式下获取ID,尤其是对于UMTS?

最佳答案

您获得的-1值对应于UNKNOWN_CID常量的值,该常量指示单元格位置不可用。

您可以在API here中进行确认。

它还指出,与您要获取的信息相关的get方法仅在GSM中有效。对于UMTS和CDMA,它将它们视为未知位置。

09-27 09:22