• Android开发(五)——计时器


    发送验证码后倒计时,Android自带计时器CountDownTimer,重写自己的计时器以实现跟新View的效果。

    package com.lgaoxiao.widget;
    
    import android.os.CountDownTimer;
    import android.widget.TextView;
    
    /**
     * TextView的计时器
     * @author TimZhang
     *
     */
    public class MyCountTimer extends CountDownTimer {
        private TextView btn;
        private int normalColor,timingColor;
        private String normalText;
        
        /**
         * @param millisInFuture
         * @param countDownInterval
         * @param v TextView
         * @param nColor Normal Color
         * @param tColor Timing Color
         */
        public MyCountTimer(long millisInFuture, long countDownInterval,TextView v,int nColor,int tColor) {
            super(millisInFuture, countDownInterval);
            this.btn = v;
            this.normalColor = nColor;
            this.timingColor = tColor;
            this.normalText = v.getText().toString();
        }
    
        @Override
        public void onTick(long millisUntilFinished) {
            btn.setBackgroundColor(timingColor);
            btn.setEnabled(false);
            btn.setText(millisUntilFinished / 1000 + "s");
            
        }
    
        @Override
        public void onFinish() {
            btn.setEnabled(true);
            btn.setBackgroundColor(normalColor);
            btn.setText(normalText);
        }
    
    }

    参考:http://www.open-open.com/code/view/1426335036826

  • 相关阅读:
    exec() show()
    QT记录
    git pull 时速度很慢,感觉几分钟不动
    git 冲突
    自学Go b:Go并发
    Go自学二:语言数据类型
    自学go一: 语言基础语法
    自学go语言第一天
    php 函数-数组函数《一》
    php查看脚本,或某一接口,某一变量所耗费内存大小的方法之memory_get_usage
  • 原文地址:https://www.cnblogs.com/ccdc/p/4431311.html
Copyright © 2020-2023  润新知