android 中与 webcoreglue 相关的奇怪日志条目
自 2 天以来,当我在设备上运行我的应用程序时,出现以下错误, 但它在模拟器上运行良好 谁能帮我解决这个错误?
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
当我通过我的应用程序登录 facebook 登录 webview 时会发生这种情况。
登录对话框出现十分之一秒然后消失 有
任何建议吗? 谢谢 ..
Since 2 days , I get the following error when I run my app on the device,
however it runs fine on the emulator
can anyone help me in solving this error?
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
E 3762 webcoreglue the real object has been deleted
it occurs when I am logging in to facebook login webview through my app.
the login dialog appears for a tenth of a second and then disappears
any suggestions?
thanks ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就我而言,webcoreglue“真实对象已被删除”是由缺少“webView.destroy();”引起的。多次调用该活动后,我收到了错误消息。
In my case the webcoreglue "the real object has been deleted" was caused by a missing "webView.destroy();". After calling the activity multiple times i got the error message.
这通常与方向变化(也包括活动变化)有关。通常,您可以通过将以下内容添加到主要活动的清单中来解决此问题:
This is generally related to orientation change (also activity changes). You can generally get around this by adding the following to your manifest for your main activity: