我想列出独立会计师名单。下面的代码在最后一个列表项中添加了计数器。
if (timeWaitBus != null) {
Bus bus = eItem.getBus();
nCounter = bus.getTimeWaitBus(bus.getId(), eItem.getIdStopBus());
doTimerTask();
}--
public void doTimerTask() {
mTimerTask = new TimerTask() {
public void run() {
if (nCounter == 0) {
mTimerTask.cancel();
}
handler.post(new Runnable() {
public void run() {
timeWaitBus.setText(String.format("Tempo de chegada estimado em %s min", nCounter));// update TextView
nCounter--;
}
});
}
};
// public void schedule (TimerTask task, long delay, long period)
t.schedule(mTimerTask, 500, 3000); //
}