how can i do a count down that continue when i close the app, even when i turn off the phone. I tried to search in the internet but it doesn't work. Someone can help me? Thanks
This is the code of the count down that i want to contunue
new CountDownTimer(10000, 1000) {
public void onTick(long millisUntilFinished) {
tv1.setText("La cuenta llega a 0 en: " + millisUntilFinished / 1000);
}
public void onFinish() {
tv1.setText("Listo!");
}
}.start();