Android CountDownTimer类最后一秒不回调

做验证码倒计时的时候,用系统的CountDownTimer类,发现最后一秒收不到回调,这里去掉了源码里不回调的逻辑,亲测可用。

public abstract class MyCountDownTimer {
    
    /**
     * Millis since epoch when alarm should stop.
     */
    private final long mMillisInFuture;

    /**
     * The interval in millis that the user receives callbacks
     */
    private final long mCountdownInterval;

    private long mStopTimeInFuture;

    /**
     * boolean representing if the timer was cancelled
     */
    private boolean mCancelled = false;

    /**
     * @param millisInFuture The number of millis in the future from the call
     *   to {@link #start()} until the countdown is done and {@link #onFinish()}
     *   is called.
     * @param countDownInterval The interval along the way to receive
     *   {@link #onTick(long)} callbacks.
     */
    public MyCountDownTimer(long millisInFuture, long countDownInterval) {
        mMillisInFuture = millisInFuture;
        mCountdownInterval = countDownInterval;
    }

    /**
     * Cancel the countdown.
     */
    public synchronized final void cancel() {
        mCancelled = true;
        mHandler.removeMessages(MSG);
    }

    /**
     * Start the countdown.
     */
    public synchronized final MyCountDownTimer start() {
        mCancelled = false;
        if (mMillisInFuture <= 0) {
            onFinish();
            return this;
        }
        mStopTimeInFuture = SystemClock.elapsedRealtime() + mMillisInFuture;
        mHandler.sendMessage(mHandler.obtainMessage(MSG));
        return this;
    }


    /**
     * Callback fired on regular interval.
     * @param millisUntilFinished The amount of time until finished.
     */
    public abstract void onTick(long millisUntilFinished);

    /**
     * Callback fired when the time is up.
     */
    public abstract void onFinish();


    private static final int MSG = 1;


    // handles counting down
    @SuppressLint("HandlerLeak")
    private Handler mHandler = new Handler() {

        @Override
        public void handleMessage(Message msg) {

            synchronized (MyCountDownTimer.this) {
                if (mCancelled) {
                    return;
                }
                final long millisLeft = mStopTimeInFuture - SystemClock.elapsedRealtime();
                Log.d("MyCountDownTimer", "millisLeft = " + millisLeft);
                if (millisLeft <= 0) {
                    onFinish();
                } else {
                    long lastTickStart = SystemClock.elapsedRealtime();
                    onTick(millisLeft);
                    // take into account user's onTick taking time to execute
                    long delay = lastTickStart + mCountdownInterval - SystemClock.elapsedRealtime();
                    // special case: user's onTick took more than interval to
                    // complete, skip to next interval
                    while (delay < 0) delay += mCountdownInterval;
                    sendMessageDelayed(obtainMessage(MSG), delay);
                }
            }
        }
    };
}
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 1.什么是朴素贝叶斯?朴素贝叶斯,即先验概率(条件),判断事件A,在事件B已经发生的条件下,发生的概率! 2.利用...
    洛水青柳2017阅读 4,451评论 0 0
  • 每个人都有各自的幸福,也都有各自幸福着的方式。 有的人,幸福是来自于一个钻戒; 有的人,幸福是来自于一杯奶茶; 有...
    是芳儿呀阅读 1,365评论 0 0
  • 空山新雨后 天气晚来秋 举起昨夜剩下的酒 来来去去江湖游 山缓缓地抬起了头 太阳就要出来了 这一袭淡淡的霓裳 装饰...
    诗癫阅读 1,072评论 0 0
  • 日本军人虽手持冲锋枪,可思想麻痹了,有的都睡着了。 小阿超他们很轻易地上了山。远处,山间的大雪道上,运送化工原料的...
    晨之书阅读 2,425评论 0 2