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

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仅用于确保此对象不为null:

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
}

最佳答案

在Google开发人员控制台崩溃报告中,我在大规模部署的应用程序中发现了同样的问题。

我怀疑问题是由我的应用尝试以onDisconnected()方法重新连接客户端引起的,尽管在等待我的应用的下一个发布时间表时无法验证。

Another stackoverflow article通过建议(1)使用Handler避免在回调本身中调用connect()方法,为我提供了有关该问题的出色提示,(2)避免重用LocationClient对象并销毁旧对象并创建一个新的。

我希望这会有所帮助。

07-28 00:01