如何在线程内显示Toast消息?
我想在线程内显示 Toast
消息..但我收到
RunTimeException:Can't create handler inside thread that has not called Looper.prepare()
请帮助我。提前致谢。
I want to show Toast
message inside thread.. but I am getting
RunTimeException:Can't create handler inside thread that has not called Looper.prepare()
Please help me. Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的线程中尝试以下代码
如果线程是非 GUI 线程并且您无法从非 GUI 线程访问 GUI 元素,会发生什么情况
Try below code in your thread
What happens that Thread is a non GUI thread and you can't access GUI element from non-GUI Threads
使用
android.os.Handler
实例从另一个线程访问 UI 线程:例如:
在非 UI 线程中,使用以下命令:
Use an
android.os.Handler
instance to access the UI-thread from another thread:For example:
In a non-UI thread, use this: