Android and Count Down (CountDownTimer) ในการทำ Count Down บน Android ด้วยภาษา Java สามารถใช้ Class ที่มีชื่อว่า CountDownTimer โดย Class นี้จะทำหน้าที่นับถอยหลังตามหน่วยเวลาที่กำหนด
public class MyCountDown extends CountDownTimer {
public MyCountDown(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
// TODO Auto-generated constructor stub
}
@Override
public void onFinish() { // เมื่อทำงานเสร็จสิ้น
// TODO Auto-generated method stub
}
@Override
public void onTick(long remain) { // ในขณะที่ทำงานทุก ๆ ครั้ง
// TODO Auto-generated method stub
}
}
การประกาศ Class ของ CountDownTimer
final MyCountDown countdown = new MyCountDown(startTime,interval);