如何使用3G网络获取有关相邻小区的信息

时间:2013-08-20 06:03:52

标签: android

我正在尝试获取有关附近相邻单元格的信息。使用2G网络是正确的,但是对于lac和cid我得到'-1'。

我有什么办法可以让它在3G网络上运行吗?

infoList = new ArrayList<CellInfo>();
CellInfo cellInfo = null;
List<NeighboringCellInfo> infos = tm.getNeighboringCellInfo();
for(NeighboringCellInfo info : infos){
    cellInfo  = new CellInfo();
    cellInfo.setType(1);
    cellInfo.setNetworkType(info.getNetworkType());
    cellInfo.setCi(info.getCid() + "");
    cellInfo.setLac(info.getLac() + "");
    cellInfo.setRssi(info.getRssi() );
    cellInfo.setPsc(info.getPsc()+"");
    infoList.add(cellInfo);
    cellInfo = null;
}

0 个答案:

没有答案