如何在线程内显示Toast消息?

发布于 2024-10-19 07:04:18 字数 177 浏览 4 评论 0原文

我想在线程内显示 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初吻给了烟 2024-10-26 07:04:18

在您的线程中尝试以下代码

runOnUiThread(new Runnable() 
        {                
            @Override
            public void run() 
            {
                //Your toast code here
            }
        });

如果线程是非 GUI 线程并且您无法从非 GUI 线程访问 GUI 元素,会发生什么情况

Try below code in your thread

runOnUiThread(new Runnable() 
        {                
            @Override
            public void run() 
            {
                //Your toast code here
            }
        });

What happens that Thread is a non GUI thread and you can't access GUI element from non-GUI Threads

别靠近我心 2024-10-26 07:04:18

使用 android.os.Handler 实例从另一个线程访问 UI 线程:

例如:

class YourUI exends Activity {

    private Handler hm;

    @override
    public void onCreate(Bundle b) {
        // do stuff, and instantiate the handler
        hm = new Handler() {
            public void handleMessage(Message m) {
                // toast code
            }
        };
    }


    public Handler returnHandler(){
        return hm;
    }
}

在非 UI 线程中,使用以下命令:

YourUI.getHandler().sendEmptyMeassage(0);

Use an android.os.Handler instance to access the UI-thread from another thread:

For example:

class YourUI exends Activity {

    private Handler hm;

    @override
    public void onCreate(Bundle b) {
        // do stuff, and instantiate the handler
        hm = new Handler() {
            public void handleMessage(Message m) {
                // toast code
            }
        };
    }


    public Handler returnHandler(){
        return hm;
    }
}

In a non-UI thread, use this:

YourUI.getHandler().sendEmptyMeassage(0);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文