标签: android countdowntimer
我已经在课堂上实现了CountDownTimer,我可以用几分钟来启动它 startCountDown(1*60*1000)一分钟。但我无法从奇数值开始,比如我想从1分59秒开始,那么它是如何做到的?
startCountDown(1*60*1000)
我尝试过startCountDown(1*59*1000)但是没有做到。它从错误的值启动计时器。我能做些什么来开始呢?
startCountDown(1*59*1000)
答案 0 :(得分:1)
60 * 1000 = 1分钟
60 * 1000 + 59 * 1000 = 1分59秒
那么问题是什么?