如何在 Android toast 消失之前执行计时器和比较方法?
/* 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在Toast中给出以miliSecond为单位的时间
You can give time in miliSecond in Toast