处理程序/可运行程序不与循环一起使用
我试图让我的 TextView 在单独的线程中更新,这样它就不会减慢我的 UI 速度。它有效,但是当我添加 while 循环来控制它时,它会将程序挂在黑屏中。
代码:
handler.post(new Runnable(){
@Override
public void run() {
while(media[6].isPlaying()) {
TextView myText = (TextView)findViewById(R.id.timerT);
myText.setText(getTimeString(media[1].getCurrentPosition()));
handler.postDelayed(this,10);
}
}
});
我认为可运行创建了一个新线程,这意味着这不会发生?或者我错了?
I am trying to get my TextView to update in a separate thread so that it doesn't slow down my UI. It works, but when I add in a while loop to control it, it hangs the program in a black screen.
Code:
handler.post(new Runnable(){
@Override
public void run() {
while(media[6].isPlaying()) {
TextView myText = (TextView)findViewById(R.id.timerT);
myText.setText(getTimeString(media[1].getCurrentPosition()));
handler.postDelayed(this,10);
}
}
});
I thought that the runnable creates a new thread, meaning that this wouldn't happen? Or am I going badly wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 CountDownTimer 类,如下所示:
Use CountDownTimer class like below:
你的黑屏是因为你在事件调度线程上运行任意持续时间的 while 循环:永远不要这样做。对于此类事情,您需要使用 AsyncTask 或在单独的线程中启动 Runnable,然后使用 View.post 仅发送计时器更新。
Your black screen is because you are running an arbitrary duration while loop on the event dispatch thread: never do this. For something of this sort you want to use AsyncTask or start your Runnable in a separate thread and then use View.post to send the timer updates only.