获取短信验证码后,倒数一分钟,重新获取
package com.example.tsx.mytest;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.graphics.Color;
import android.os.CountDownTimer;
import android.text.Spannable;
import android.text.SpannableString;
import android.text.style.ForegroundColorSpan;
import android.widget.Button;
public class TimeCountUtil extends CountDownTimer {
private Activity mActivity;
private Button btn;//按钮
// 在这个构造方法里需要传入三个参数,一个是Activity,一个是总的时间millisInFuture,一个是countDownInterval,然后就是你在哪个按钮上做这个是,就把这个按钮传过来就可以了
public TimeCountUtil(Activity mActivity, long millisInFuture, long countDownInterval, Button btn) {
super(millisInFuture, countDownInterval);
this.mActivity = mActivity;
this.btn = btn;
}
@SuppressLint("NewApi")
@Override
public void onTick(long millisUntilFinished) {
btn.setClickable(false);//设置不能点击
btn.setText(millisUntilFinished / 1000 + "s");//设置倒计时时间
//设置按钮为灰色,这时是不能点击的
btn.setBackground(mActivity.getResources().getDrawable(R.drawable.send_code_backg));
Spannable span = new SpannableString(btn.getText().toString());//获取按钮的文字
span.setSpan(new ForegroundColorSpan(Color.RED), 0, 2, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);//讲倒计时时间显示为红色
btn.setText(span);
}
@SuppressLint("NewApi")
@Override
public void onFinish() {
btn.setText("重新获取");
btn.setClickable(true);//重新获得点击
btn.setBackground(mActivity.getResources().getDrawable(R.drawable.codebackg));//还原背景色
}
}