美文网首页
Android倒计时定时器

Android倒计时定时器

作者: trapQueen真好听 | 来源:发表于2017-03-10 16:41 被阅读0次

       之前项目有用到点击后实现倒计时的功能,android系统有一个CountDownTimer的倒计时方法还不错,记录一下

```

//参数分别为总时间,跟每秒间隔时间

CountDownTimertimer=newCountDownTimer(60000,1000) {

//每个间隔走一次onTick()方法

@Override

public void onTick(longmillisUntilFinished) {

verificationCodeBtn.setText(millisUntilFinished /1000+"秒");

}

@Override

public void onFinish() {

verificationCodeBtn.setEnabled(true);

verificationCodeBtn.setText("获取验证码");

}

};

```

通过timer.start调用,timer.cancel停止。

特此记录一下备忘。

相关文章

网友评论

      本文标题:Android倒计时定时器

      本文链接:https://www.haomeiwen.com/subject/hkfogttx.html