如何在 Android toast 消失之前执行计时器和比较方法?

发布于 2024-12-02 01:34:11 字数 345 浏览 1 评论 0原文

/* In onclick function */ 

Toast.makeText(this,"you are right!",Toast.LENGTH_SHORT).show();
            timer();
            compare();
/* onclick function ends */ 

在此代码片段中,当弹出对话框时,在对话框消失之前执行计时器和比较方法。我该如何解决这个问题?有人可以用代码片段解释一下吗?

另外,我希望 LENGTH_SHORT 为 400 毫秒。我怎样才能改变这一点?

我如何使用alertdialog 完成这个简单的任务?

/* In onclick function */ 

Toast.makeText(this,"you are right!",Toast.LENGTH_SHORT).show();
            timer();
            compare();
/* onclick function ends */ 

In this snippet when the dialog is popping up, the timer and compare methods are executed before the dialog goes away. How do I fix this? Can someone explain with a code snippet?

Also, I want the LENGTH_SHORT to be 400ms. How can I change that?

How can I do this simple task using alertdialog?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

遗弃M 2024-12-09 01:34:11

您可以在Toast中给出以miliSecond为单位的时间

Toast.make(this,"Hello",400).show();
 now// take one thread


Thread th=new Thread(new Runnable(){
try{
th.sleep(400);
timer();
compare();
}
catch(Exception e){
 e.getExption();  
 }
});

You can give time in miliSecond in Toast

Toast.make(this,"Hello",400).show();
 now// take one thread


Thread th=new Thread(new Runnable(){
try{
th.sleep(400);
timer();
compare();
}
catch(Exception e){
 e.getExption();  
 }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文