开发者社区> 问答> 正文

android中发送验证码,才开始学的

这个现在还没有数据库,只是我学习用的,点发送验证码,后面会提示多少秒后重新获取验证码

展开
收起
爵霸 2016-06-16 10:30:38 1787 0
1 条回答
写回答
取消 提交回答
  • MyCoun myCoun = new MyCoun(60000, 1000);
    
    /**
     * 倒计时定时器
     * 
     * @author 1
     * 
     */
     public class MyCoun extends CountDownTimer {
        public MyCoun(long millisInFuture, long countDownInterval) {
            super(millisInFuture, countDownInterval);
        }
    
        @Override
        public void onFinish() {
            fasong.setBackgroundResource(R.drawable.u26);
            fasong.setTextColor(Color.parseColor("#000000"));
            fasong.setText(R.string.huoquduanxin);
            fasong.setEnabled(true);
        }
    
        @Override
        public void onTick(long millisUntilFinished) {
            fasong.setText(("获取动态码(" + millisUntilFinished / 1000) + ")");
        }
    }

    在按钮的点击事件中

    fasong.setEnabled(false);
     myCoun.start();
    2019-07-17 19:40:26
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
58同城Android客户端Walle框架演进与实践之路 立即下载
Android组件化实现 立即下载
蚂蚁聚宝Android秒级编译——Freeline 立即下载