如果从计时器任务调用,Android 对话框根本不显示
timer = new Timer("Timer Thread");
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
showDialog(0);
timeBar.setProgress(time);
}
}
}, INTERVAL, INTERVAL);`
我的 onCreateDialog 方法工作正常,因此当我从 Button 使用 showDialog(0) 时,它工作正常。但如果该方法是由调度程序调用的,则不会。
timer = new Timer("Timer Thread");
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
showDialog(0);
timeBar.setProgress(time);
}
}
}, INTERVAL, INTERVAL);`
My onCreateDialog method is working fine, so when I use showDialog(0) from a Button it works fine. But not if the method is called by a Scheduler.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用处理程序:
这允许您从其他线程调用 UI 线程上的方法。需要更多解释,就问吧。
Using a handler:
This allows you to call method's on the UI thread from other threads. Need more explanation, just ask.
您需要在 UI 线程上调用这些方法。
一种方法是通过
AsyncTask
,如 这个答案。另一种方法是创建一个 Handler 并从您的应用程序向其发送消息
定时器任务
。您可以在 中阅读有关
AsyncTasc
和 UI 线程的更多信息无痛穿线。You need to call these methods on the UI thread.
One way to do this is via
AsyncTask
, as in this answer.Another way is to create a Handler and send messages to it from your
TimerTask
.You can read more about
AsyncTasc
and the UI thread in Painless Threading.