这种症状经常被提及,但我没有发现另一个相同标准的问题,所以这里......
当设备有服务时,我正在制作一个成功使用 GPS 的应用程序。我有一个带有 2.3.4 版本 Android 的测试设备。它没有 SIM,因此不需要 GPS。但是它可以通过谷歌地图中的 Wifi 获取位置。但是,我的应用无法在此设备上获取位置。在具有服务的设备上,我可以通过将设备置于飞行模式然后重新启用 Wifi 来获得相同的行为。
在我的应用程序中,我有一个实现 LocationListener 的 gps 跟踪类。
在应用程序启动时,运行以下代码:
public Location getLocation() {
try {
locationManager = (LocationManager) mContext
.getSystemService(LOCATION_SERVICE);
// getting GPS status
isGPSEnabled = locationManager
.isProviderEnabled(LocationManager.GPS_PROVIDER);
// getting network status
isNetworkEnabled = locationManager
.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
if (!isGPSEnabled && !isNetworkEnabled) {
// no network provider is enabled
} else {
this.canGetLocation = true;
// First get location from Network Provider
if (isNetworkEnabled) {
Log.d(LOG_TAG, "Requesting updates");
//TODO once tested, up the time below
locationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("Network", "Network");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
// *** location is null here ***
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled) {
if (location == null) {
locationManager.requestLocationUpdates(
LocationManager.GPS_PROVIDER,
MIN_TIME_BW_UPDATES,
MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
Log.d("GPS Enabled", "GPS Enabled");
if (locationManager != null) {
location = locationManager
.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if (location != null) {
latitude = location.getLatitude();
longitude = location.getLongitude();
}
}
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return location;
}
请参阅评论“此处的位置为空”。几分钟后启动和后续调用就是这种情况。
这些接口函数都没有被调用过: onLocationChanged onProviderEnabled onProviderDisabled onStatusChanged
我有什么基本的东西吗?至少在稍等片刻之后,似乎应该可以到达位置。而且,如前所述,谷歌地图在两种设备上都在仅 wifi 模式下工作。