gpt4 book ai didi

java - 在 Android 4.1.1 的 Galaxy S3 中不调用 onLocationChanged

转载 作者:太空狗 更新时间:2023-10-29 14:24:34 26 4
gpt4 key购买 nike

这段代码在其他手机上工作正常,在装有 android 4.0.3 的三星 Galaxy S3 上也能正常工作,但在装有 Android 4.1.1 的三星 Galaxy S3 上不起作用,知道吗?

问题是永远不会调用 onLocationChanged 方法。

返回的提供者是“网络”

/**
* @see android.app.Application#onCreate()
*/
@Override
public void onCreate() {
locationManager = (LocationManager) this.getSystemService(getApplicationContext().LOCATION_SERVICE);
String provider = getLocationProvider();
locationManager.requestLocationUpdates(provider, 0, 20, locationListener);
}

/**
* @see android.location.LocationListener
*/
LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) {
currentLocationUser = location;
if (onLocationListener != null) {
onLocationListener.onLocationChanged(location);
}
}

public void onStatusChanged(String provider, int status, Bundle extras) {

}

public void onProviderEnabled(String provider) {

}

public void onProviderDisabled(String provider) {

}
};

public String getLocationProvider() {
Criteria locationCriteria = new Criteria();
locationCriteria.setAccuracy();
return locationManager.getBestProvider(locationCriteria, true);
}

最佳答案

我想建议在使用新时间请求更新之前使用 LocationManager.removeUpdates()在 JELLYBEAN(4.1) 之后,更新之间的最短时间不再只是一个提示。

参见 Location manager有关此的更多信息。

如下文所述

Prior to Jellybean, the minTime parameter was only a hint, and some location provider implementations ignored it. From Jellybean and onwards it is mandatory for Android compatible devices to observe both the minTime and minDistance parameters.

关于java - 在 Android 4.1.1 的 Galaxy S3 中不调用 onLocationChanged,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13722430/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com