android 错误:无法在未调用 Looper.prepare() 的线程内创建处理程序
我收到来自 android Market 用户的错误。 我不知道这个错误是什么时候发生的。 模拟器和测试手机完美运行该应用程序! 知道从哪里开始寻找吗? 谢谢 !
这是错误:
java.lang.RuntimeException:不能 在线程内创建处理程序 未在以下位置调用 Looper.prepare() android.os.Handler。(Handler.java:121) 在 android.view.ViewRoot。(ViewRoot.java:259) 在 android.view.WindowManagerImpl.addView(WindowManagerImpl.java:148) 在 android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91) 在 android.view.Window$LocalWindowManager.addView(Window.java:430) 在 android.app.Dialog.show(Dialog.java:288) 在 be.test.testerd$1.run(testscreen.java:103)
I have an error from users of the android Market.
I have no idea when this error occurs .
The simulator and test phone runs the app perfectly!
Any1 any idea where to begin looking?
Thanks !
this is the error:
java.lang.RuntimeException: Can't
create handler inside thread that has
not called Looper.prepare() at
android.os.Handler.(Handler.java:121)
at
android.view.ViewRoot.(ViewRoot.java:259)
at
android.view.WindowManagerImpl.addView(WindowManagerImpl.java:148)
at
android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
at
android.view.Window$LocalWindowManager.addView(Window.java:430)
at
android.app.Dialog.show(Dialog.java:288)
at
be.test.testerd$1.run(testscreen.java:103)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用了 AsyncTask 并且在主 UI 线程上未调用 doBackground() 方法,并且调用了 Toast 或在主 UI 线程上运行的任何其他内容,则可能会发生这种情况。
This can occur, if you have used AsyncTask and in doBackground() method is not called on Main UI thread, and calling a Toast or anyother thing which runs on Main UI thread.