【网址百科系统源码】【nachos源码分析】【ecos mt源码】countdowntimer 源码

2024-11-25 07:06:57 来源:阿3源码 分类:热点

1.Android开发CountDownTimer终止倒计时

countdowntimer 源码

Android开发CountDownTimer终止倒计时

       / timer Util

       /* 定义一个倒计时的源码网址百科系统源码内部类 */

       class TimeCount extends CountDownTimer { public TimeCount(long millisInFuture, long countDownInterval) { super(millisInFuture, countDownInterval);// 参数依次为总时长,和计时的时间间隔 }

       @Override public void onFinish() { // 计时完毕时触发

       checking.setText("重新验证");

       checking.setClickable(true);

       }

       @Override public void onTick(long millisUntilFinished) { // 计时过程显示

       checking.setClickable(false);

       checking.setText(millisUntilFinished / + "秒");

       }

       }

本文地址:http://5o.net.cn/news/06d256597428.html 欢迎转发