1.如图所示,要实现一个验证码的倒计时的效果
2.实现
图中获取验证码那块是一个button按钮
关键部分,声明一个TimeCount,继承自CountDownTimer
/*验证码倒计时*/private class TimeCount extends CountDownTimer{ /** * @param millisInFuture 总时间长度(毫秒) * @param countDownInterval 时间间隔(毫秒),每经过一次时间间隔都会调用onTick方法 */ public TimeCount(long millisInFuture,long countDownInterval) { super(millisInFuture,countDownInterval); } @OverrIDe public voID onTick(long millisUntilFinished) { //倒计时状态 getVerificationCodeBtn.setClickable(false); //设置button此时不可点击 getVerificationCodeBtn.setBackground(getResources().getDrawable(R.drawable.get_verification_code_waitting_bg));//修改button的背景 getVerificationCodeBtn.setTextcolor(getResources().getcolor(R.color.black));//修改button的textcolor getVerificationCodeBtn.setText(millisUntilFinished / 1000 +"s后可重新发送");//显示button的倒计时文字 } @OverrIDe public voID onFinish() { //倒计时结束状态 getVerificationCodeBtn.setBackground(getResources().getDrawable(R.drawable.login_btn_bg)); getVerificationCodeBtn.setTextcolor(getResources().getcolor(R.color.white)); getVerificationCodeBtn.setClickable(true); //重新设置button为可点击 getVerificationCodeBtn.setText("重新获取"); //修改button的文字 }}
最后在代码中,声明TimeCount并实例化,在button的点击事件中调用.start()方法启动定时器。
TimeCount timeCount = new TimeCount(60000,1000); timeCount.start();
总结
以上所述是小编给大家介绍的androID实现一个图片验证码倒计时功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对编程小技巧网站的支持!
总结以上是内存溢出为你收集整理的android实现一个图片验证码倒计时功能全部内容,希望文章能够帮你解决android实现一个图片验证码倒计时功能所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)