美文网首页
短行验证倒计时

短行验证倒计时

作者: That丶Alex | 来源:发表于2018-11-12 11:30 被阅读0次

private CountDownTimermCountDownTimer =new CountDownTimer(60000,1000) {

@Override

    public void onTick(long l) {

textcode.setText((l /1000) +"秒后可重发");

textcode.setClickable(false);

}

@Override

    public void onFinish() {

textcode.setEnabled(true);

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

}

};

相关文章

网友评论

      本文标题:短行验证倒计时

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