gpt4 book ai didi

android - 未连接。调用 Connect 或等待 onConnected() 被调用

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:47:45 25 4
gpt4 key购买 nike

我的应用程序以 map 为中心。我经常调用 requestLocationUpdates()。偶尔,当它被调用时,我会得到这个 exception 。或者在任何其他调用这种方法的地方。我在 SOF 上看到了建议的解决方案,遗憾的是似乎对我没有任何作用。即使我调用 mLocationClient.connect(),也不能保证它会立即连接,如果我错了请纠正我。我该如何解决这个问题?

case R.id.btnContinue:

gpsLocationDailog.cancel();

int isGooglePlayServiceAvilable = GooglePlayServicesUtil
.isGooglePlayServicesAvailable(getApplicationContext());
if (isGooglePlayServiceAvilable == ConnectionResult.SUCCESS) {
/** thorws shitty expectiosn **/
mLocationClient.connect();
try {
mLocationClient.requestLocationUpdates(REQUEST, this);
mCurrentLocation = mLocationClient.getLastLocation();
fireQueryToGetTheResponse(latitude, longitude);
rl.setVisibility(View.VISIBLE);
mDrawerLayout.setVisibility(View.GONE);
mSlidingUpPanelLayout.setVisibility(View.GONE);
} catch (IllegalStateException e) {
mLocationClient.connect();
Log.e(TAG, " Waiting for onConnect to be called");
}
} else {
GooglePlayServicesUtil.getErrorDialog(
isGooglePlayServiceAvilable,
SqueakeeMapListViewPager.this, 0).show();
}

break;

这是引发的异常:

java.lang.IllegalStateException: Not connected. Call connect() and wait for onConnected() to be called.
at com.google.android.gms.internal.de.bc(Unknown Source)
at com.google.android.gms.internal.ez.a(Unknown Source)
at com.google.android.gms.internal.ez$c.bc(Unknown Source)
at com.google.android.gms.internal.ey.requestLocationUpdates(Unknown Source)
at com.google.android.gms.internal.ez.requestLocationUpdates(Unknown Source)
at com.google.android.gms.internal.ez.requestLocationUpdates(Unknown Source)
at com.google.android.gms.location.LocationClient.requestLocationUpdates(Unknown Source)
at org.application.app.squeakee.SqueakeeMapListViewPager.onClick(SqueakeeMapListViewPager.java:1936)
at android.view.View.performClick(View.java:4475)
at android.view.View$PerformClick.run(View.java:18786)
at android.os.Handler.handleCallback(Handler.java:730)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5493)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1209)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1025)
at dalvik.system.NativeStart.main(Native Method)

最佳答案

我有一个类似的错误,基本上,前面的评论中所说的会解决你的问题是的。 如果您确实跟踪了您的错误,它会在此处报告:

mLocationClient.requestLocationUpdates(REQUEST, this);

原因是当您调用该 API 方法时客户端未连接。这就是为什么之前的答案工作得很好,因为基本上他所做的是在回调中开始位置更新。

当你这样做时:

mLocationClient.connect();

您的客户端不会立即连接,但代码会一直运行,当您询问 locationUpdates 时您还没有连接(它仍在处理它,它需要时间),所以它崩溃了。此外,当您执行 .connect() 时,您基本上会激活 onConnected() 回调,因此如果您在其中编写 locationUpdates 请求,那么您基本上会解决大部分错误。

另外,你说你有很多请求,只是有时会出现这个错误。为此,您没有提供足够的代码,但我认为我可以假设错误发生是因为您取消请求并重新激活它们的方式/时间(您的方法 onStop()、onPause()、onResume() 和开始())。当你暂停你的应用程序时,你应该断开客户端,但你应该确保当你恢复它时,你会再次重新连接它,所以也许只是做

mLocationClient.connect();

在 onResume() 中,这可能会解决您的一些其他问题(再一次,您没有提供该代码,也许您已经正确编码了,但对于其他遇到此问题的读者来说,这可能是修复它的建议)。

回答有点晚,但希望这对社区的其他人有所帮助。

最好的问候。

关于android - 未连接。调用 Connect 或等待 onConnected() 被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21107237/

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