下面是每隔一段时间就执行某个操作,直到关闭定时操作:
下面是隔一段时间后执行某个操作一次,执行完后,不再执行
@Override
public void run() {
// TODO Auto-generated method stub
if(runCount == 1){// 第一次执行则关闭定时执行操作
// 在此处添加执行的代码
handler.removeCallbacks(this);
}
handler.postDelayed(this, 50);
runCount++;
}
};
handler.postDelayed(runnable, 50);// 打开定时器,执行操作
新闻热点
疑难解答
图片精选