Comment arrêter cette minuterie, une idée?
Je veux réinitialiser le chronomètre dans chaque requête mais cela continue. Chaque nouvelle requête ajoute une nouvelle minuterie. Comment résoudre ceci?
new CountDownTimer(zaman, 1000) { //geriye sayma
public void onTick(long millisUntilFinished) {
NumberFormat f = new DecimalFormat("00");
long hour = (millisUntilFinished / 3600000) % 24;
long min = (millisUntilFinished / 60000) % 60;
long sec = (millisUntilFinished / 1000) % 60;
cMeter.setText(f.format(hour) + ":" + f.format(min) + ":" + f.format(sec));
}
public void onFinish() {
cMeter.setText("00:00:00");
}
}.start();
vous devriez le définir comme une variable
CountDownTimer yourCountDownTimer = new CountDownTimer(zaman, 1000) { //geriye sayma
public void onTick(long millisUntilFinished) {
NumberFormat f = new DecimalFormat("00");
long hour = (millisUntilFinished / 3600000) % 24;
long min = (millisUntilFinished / 60000) % 60;
long sec = (millisUntilFinished / 1000) % 60;
cMeter.setText(f.format(hour) + ":" + f.format(min) + ":" + f.format(sec));
}
public void onFinish() {
cMeter.setText("00:00:00");
}
}.start();
yourCountDownTimer.cancel();
En savoir plus: https://developer.Android.com/reference/Android/os/CountDownTimer.html
Vous pouvez appeler this.cancel()
ou simplement cancel()
dans l'une de ses méthodes de rappel
static CountDownTimer countDownTimer = null;
if (countDownTimer != null) {
countDownTimer.cancel();
}
countDownTimer = new CountDownTimer(50000, 1000) {
public void onTick(long millisUntilFinished) {
Log.e("seconds remaining : ", "seconds remaining : " + millisUntilFinished / 1000);
}
public void onFinish() {
Log.e("done!", "done!");
}
};
countDownTimer.start();