我正在为 CDMA 手机开发一个 android 应用程序,它将收集它们所连接的蜂窝塔的纬度/经度。
第一:这甚至可能吗?
第二:我看过以前的帖子,上面说只需添加“CellLocation.requestLocationUpdate();” 但它没有任何效果。这是我试图检索位置的代码部分......
CdmaCellLocation CdmaLocation = (CdmaCellLocation)telephonyManager.getCellLocation();
int Longitude = CdmaLocation.getBaseStationLongitude();
int Latitude = CdmaLocation.getBaseStationLatitude();
查看CdmaCellLocation 类的代码会发现这些值默认为 Integer.MAX_VALUE,但您如何实际设置纬度和经度?