sequential countdowntimer with handler wont update textView correctly
问题 I was trying to build some sort of sequential countdown. Meaning, that I build up a queue of "exercises", each one containing a specific duration, which is the countdown time. In a custom Countdown class, I pop these exercises off the queue and use the duration as countdown. I want these countdowns to run one after another. For this I built a Countdown class, based on the code basis of the abstract class CountDownTimer . import java.util.ArrayDeque; import java.util.ArrayList; import java