服务器之家

服务器之家 > 正文

Android实现点击获取验证码60秒后重新获取功能

时间:2022-02-28 15:36     来源/作者:Xia_焱

本文实例为大家分享了Android实现点击获取验证码60秒后重新获取的具体代码,供大家参考,具体内容如下

上代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
 * Created by Xia_焱 on 2017/5/7.
 */
 
public class CountDownTimerUtils extends CountDownTimer {
  private TextView mTextView;
 
  /**
   * @param millisInFuture  The number of millis in the future from the call
   *             to {@link #start()} until the countdown is done and {@link #onFinish()}
   *             is called.
   * @param countDownInterval The interval along the way to receive
   *             {@link #onTick(long)} callbacks.
   */
  public CountDownTimerUtils(TextView textView, long millisInFuture, long countDownInterval) {
    super(millisInFuture, countDownInterval);
    this.mTextView = textView;
  }
 
  @Override
  public void onTick(long millisUntilFinished) {
    mTextView.setClickable(false); //设置不可点击
    mTextView.setText(millisUntilFinished / 1000 + "秒后可重新发送"); //设置倒计时时间
    mTextView.setBackgroundResource(R.drawable.bg_identify_code_press); //设置按钮为灰
    SpannableString spannableString = new SpannableString(mTextView.getText().toString());
    ForegroundColorSpan span = new ForegroundColorSpan(Color.RED);
    spannableString.setSpan(span, 0, 2, Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
    mTextView.setText(spannableString);
  }
 
  @Override
  public void onFinish() {
    mTextView.setText("重新获取验证码");
    mTextView.setClickable(true);//重新获得点击
    mTextView.setBackgroundResource(R.drawable.bg_identify_code_normal);
  }
}

TextView背景色

bg_identify_code_press

?
1
2
3
4
5
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#C0C0C0" /> <!--填充色 透明-->
  <corners android:radius="7dp" /> <!-- 圆角 -->
</shape>

bg_identify_code_normal

?
1
2
3
4
5
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#2BAF2B" /> <!--填充色 透明-->
  <corners android:radius="7dp" /> <!-- 圆角 -->
</shape>

布局代码

?
1
2
3
4
5
6
7
8
9
10
<TextView
   android:id="@+id/tv_yzm"
   android:layout_width="match_parent"
   android:layout_marginTop="50dp"
   android:layout_height="45dp"
   android:background="@drawable/bg_identify_code_normal"
   android:gravity="center"
   android:text="点击获取验证码"
   android:textColor="#FFF"
   android:textSize="15dp" />

项目代码

?
1
2
3
4
5
6
7
8
9
10
private void initView() {
   tv_yzm = (TextView) findViewById(R.id.tv_yzm);
   tv_yzm.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
       CountDownTimerUtils mCountDownTimerUtils = new CountDownTimerUtils(tv_yzm, 60000, 1000);
       mCountDownTimerUtils.start();
     }
   });
 }

效果图

Android实现点击获取验证码60秒后重新获取功能

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/MacaoPark/article/details/71379520

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
返回顶部