Android使用CountDownTimer模拟短信验证倒计时

 更新时间:2018年07月20日 09:20:31   作者:Mr_Leixiansheng  
这篇文章主要为大家详细介绍了Android使用CountDownTimer模拟短信验证倒计时,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文为大家分享了CountDownTimer模拟短信验证倒计时的具体代码,供大家参考,具体内容如下

内容:介绍倒计时CountDownTimer的基本使用方法。模拟短信验证

步骤:

1、继承CountDownTimer,重写onTick()、onFinish()

2、代码中new出CountDownTimer子类,传好参数,调用start()执行

代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 tools:context="com.example.leixiansheng.countdowntimer.MainActivity">
 
 <TextView
  android:id="@+id/tv_getMsg"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:text="获取短信验证码"
  android:background="@color/colorPrimaryDark"
  android:textSize="16sp"
  android:textColor="#ffffffff" />
</RelativeLayout>

TimerCount

package com.example.leixiansheng.countdowntimer;
 
import android.os.CountDownTimer;
import android.widget.TextView;
 
/**
 * Created by Leixiansheng on 2018/7/18.
 */
 
public class TimerCount extends CountDownTimer {
 
 private TextView mTextView;
 
 
 public TimerCount(long millisInFuture, long countDownInterval, TextView textView) {
 super(millisInFuture, countDownInterval);
 mTextView = textView;
 }
 
 @Override
 public void onTick(long millisUntilFinished) {
 mTextView.setClickable(false);
 mTextView.setText("重新获取" + millisUntilFinished / 1000 + "秒");
 }
 
 @Override
 public void onFinish() {
 mTextView.setClickable(true);
 mTextView.setText("获取短信验证码");
 }
}

Main

package com.example.leixiansheng.countdowntimer;
 
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
 
public class MainActivity extends AppCompatActivity {
 
 
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 final TextView textView = (TextView) findViewById(R.id.tv_getMsg);
 textView.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View v) {
 /**
  * millisInFuture:要计数的总时长
  * countDownInterval:每隔多少秒响应
  */
 TimerCount timerCount = new TimerCount(5000, 1000, textView);
 timerCount.start();
 }
 });
 }
}

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

相关文章

  • Android中TextView显示圆圈背景或设置圆角的方法

    Android中TextView显示圆圈背景或设置圆角的方法

    TextView显示文本给用户,并允许他们选择编辑。TextView是一个完整的文本编辑器,但是其基本类配置为不允许编辑。下面这篇文章主要给大家介绍了关于Android中TextView显示圆圈背景或设置圆角的方法,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-05-05
  • Android Handler leak分析及解决办法详解

    Android Handler leak分析及解决办法详解

    这篇文章主要介绍了Android Handler leak分析及解决办法详解的相关资料,需要的朋友可以参考下
    2017-03-03
  • Android编程实现全局获取Context及使用Intent传递对象的方法详解

    Android编程实现全局获取Context及使用Intent传递对象的方法详解

    这篇文章主要介绍了Android编程实现全局获取Context及使用Intent传递对象的方法,结合实例形式分析了Android全局Context的获取及Intent传递对象的具体操作方法,需要的朋友可以参考下
    2017-08-08
  • Android Jetpack组件中LiveData的优劣

    Android Jetpack组件中LiveData的优劣

    LiveData是Jetpack组件的一部分,更多的时候是搭配ViewModel来使用,相对于Observable,LiveData的最大优势是其具有生命感知的,换句话说,LiveData可以保证只有在组件( Activity、Fragment、Service)处于活动生命周期状态的时候才会更新数据
    2023-04-04
  • kotlin Context使用详解

    kotlin Context使用详解

    这篇文章主要介绍了kotlin Context使用详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-03-03
  • android 中ProgressDialog实现全屏效果的示例

    android 中ProgressDialog实现全屏效果的示例

    本篇文章主要介绍了android 中ProgressDialog实现全屏效果的示例,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2017-11-11
  • Android开发利器之pidcat安装方式

    Android开发利器之pidcat安装方式

    pidcat 是Android届JakeWharton大神开发的一款命令行工具,堪称Android开发利器,它能方便Android程序猿捕获日志,过滤日志,定位程序问题,超级好用。这篇文章给大家介绍了Android开发利器之pidcat,需要的朋友可以参考下
    2019-05-05
  • Android自定义控件实现九宫格解锁

    Android自定义控件实现九宫格解锁

    这篇文章主要为大家详细介绍了Android自定义控件实现九宫格解锁,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-06-06
  • Android编程使用Intent传递对象的方法分析

    Android编程使用Intent传递对象的方法分析

    这篇文章主要介绍了Android编程使用Intent传递对象的方法,结合实例形式详细分析了Android使用Intent实现传递对象的相关技巧与注意事项,需要的朋友可以参考下
    2016-01-01
  • Android框架Volley使用之Json请求实现

    Android框架Volley使用之Json请求实现

    这篇文章主要介绍了Android框架Volley使用之Json请求实现,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值 ,需要的朋友可以参考下
    2019-05-05

最新评论