道场图表 + PhoneGap + Android .Error:活动已泄漏窗口 com.android.internal.policy.impl
我尝试了此处给出的示例代码(index_01.html): http://www.ibm.com/developerworks/web/library /wa-charting/index.html
在桌面上,它工作正常,但是当我使用phoneGap编译后将其移植到android模拟器时,我显示以下错误:
Activity hasleaked window com.android.internal.policy.impl.PhoneWindow$DecorView@46368a28 最初添加在这里 在 Android.view.ViewRoot。 。 。 。 。 。 。 。
I tried the sample code given here ( index_01.html ):
http://www.ibm.com/developerworks/web/library/wa-charting/index.html
On Desktop , it is working fine but when i port it to android simulator after compiling it with phoneGap I shows the following error:
Activity has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@46368a28 that was originally added here
at Android.view.ViewRoot. .
.
.
.
.
.
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您尝试
从非 UI 线程更新 UI
时,会出现这种类型的异常。请检查您是否从任何其他线程执行此操作,然后使用Handler
在您的应用中执行任何更新。This type of exception comes when you try to
update in UI from the non UI thread
. Please check if you are doing so from any other thread then useHandler
to perform any update in your app.