我的以下代码适用于除 android 4.1 和 android 4.2 版本之外的所有设备。我已经尝试了很多东西并搜索了关于那个..在三星论坛中,它还说它不工作看到这个链接
mLocationManager.requestLocationUpdates(
LocationManager.NETWORK_PROVIDER,1000, 100, this);
public void onLocationChanged(Location newBestLocation) {
System.out.println("On Location Change Call.......");
mLocationManager.removeUpdates(this);
boolean best = isBetterLocation(newBestLocation, currentLocation);
if (best) {
currentLocation = newBestLocation;
}
locationUpdater.onLocationUpdateReceived(currentLocation);
}
如果有人知道解决方案,请告诉我。