短信验证码倒计时是一个在app端再常见不过的功能了,要实现倒计时,写法有很多,有用handler来做的,也有用timer来做的,当然现在的Rxjava里面的Observable的interval方法也可以做这样子的事情,后来会发现其实android已经给了一个很适合做倒计时的控件CountDownTimer; 看下官方的解释: Schedule a
demo:https://github.com/happyjiatai/demo_csdn/tree/master/demo_76_countdowntimer 1. CountDownTimer简介 源码上是这么解释的:Schedule a countdown until a time in the future, with regular notifications on interval
CountDownTimer倒计时使用 CountDownTimer使用 CountDownTimer 代码片. // An highlighted blockprivate MyCountDownTimer timer;private final long TIME = 7 * 1000L;private final long INTERVAL = 1000L;priva