这是我的代码:
Thread
Thread
被称为TextView
,我想在名为TextView
的{{1}}中显示时间。 Thread
中存在一些错误,因为即使时间显示在TextView
中,它也不会每秒更新一次。感谢
答案 0 :(得分:2)
如上所述,您应该将Handler
与Runnable
一起使用,以下是您的代码示例:
final Handler handler = new Handler();
final Runnable task = new Runnable() {
@Override
public void run() {
//Your code
handler.postDelayed(this, 1000);
}
};
handler.postDelayed(task, 1000);
有关处理程序的更多信息,in the doc.
答案 1 :(得分:2)