gpt4 book ai didi

带有 Google Play 服务 LocationClient 的 java.util.ConcurrentModificationException

转载 作者:行者123 更新时间:2023-11-30 03:21:24 25 4
gpt4 key购买 nike

我在 Android 中使用 Google Play Services LocationClient。我在获取位置和位置更新方面没有任何问题。但是,当我的应用程序进入后台时,有时应用程序会被 android 停止并抛出此错误:

java.util.ConcurrentModificationException
at java.util.HashMap$HashIterator.nextEntry(HashMap.java:792)
at java.util.HashMap$KeyIterator.next(HashMap.java:819)
at com.google.android.gms.internal.l$a$a.onServiceDisconnected(Unknown Source)
at android.app.LoadedApk$ServiceDispatcher.doDeath(LoadedApk.java:1102)
at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1116)
at android.os.Handler.handleCallback(Handler.java:615)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4929)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:798)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:565)
at dalvik.system.NativeStart.main(Native Method)

我已经多次尝试摆脱这个错误,这就是我的 locationClient 代码现在的工作方式:

@Override
public void onConnected(Bundle arg0) {
counter = 0;
if (getLocationClient().isConnected()) {
getLocationClient().requestLocationUpdates(getLocationRequest(),
providerListener);
;
listen();
} else if (!getLocationClient().isConnecting()){
getLocationClient().connect();
}
}

@Override
public void onDisconnected() {
if(_locationClient!= null && !_locationClient.isConnected() && !_locationClient.isConnecting()) {
try {
connectLocationClient();
} catch (Exception e) {
e.printStackTrace();
}
}
}

方法 getLocationClient 和 getLocationRequest 只是为了确保这个对象不为空:

private LocationClient getLocationClient() {
if (_locationClient == null) {
_locationClient = new LocationClient(context, this, this);
}
return _locationClient;
}

private LocationRequest getLocationRequest() {
if (_locRequest == null) {
_locRequest = new LocationRequest();
_locRequest.setInterval(fixTime);
_locRequest
.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
}
return _locRequest;
}

知道会发生什么吗?

谢谢!

编辑:

就像 shr 指出的那样,在 onDisconnected 中调用 connect() 可能是造成这种情况的原因,所以我确实从那里删除了它。在 onConnected() 中调用 requestLocationUpdates() 也会导致一些麻烦,因此改为:

@Override
public void onConnected(Bundle arg0) {
requestUpdates();
}
public void requestUpdates(){
getLocationClient().requestLocationUpdates(getLocationRequest(),this);
}

@Override
public void onDisconnected() {
//Use a handler instead to reconnect
}

最佳答案

我在一个大规模部署的应用程序中发现了同样的问题,在谷歌开发者控制台崩溃报告中。

我怀疑问题是由于我的应用试图在 onDisconnected() 方法中重新连接客户端引起的,但在等待我的应用的下一个发布计划时无法验证这一点。

Another stackoverflow article通过建议 (1) 使用 Handler 避免在回调本身调用 connect() 方法,(2) 避免重复使用 给了我关于这个问题的极好的提示>LocationClient 对象并销毁旧的并创建一个新的。

我希望这对您有所帮助。

关于带有 Google Play 服务 LocationClient 的 java.util.ConcurrentModificationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19070975/

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