91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android使用CountDownTimer模擬短信驗證倒計時

發布時間:2020-09-25 09:37:02 來源:腳本之家 閱讀:120 作者:Mr_Leixiansheng 欄目:移動開發

本文為大家分享了CountDownTimer模擬短信驗證倒計時的具體代碼,供大家參考,具體內容如下

Android使用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();
 }
 });
 }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

隆子县| 靖州| 绥德县| 盐津县| 贡觉县| 巴马| 岱山县| 抚松县| 台安县| 揭东县| 松溪县| 滁州市| 锡林浩特市| 嘉峪关市| 台山市| 浏阳市| 呼伦贝尔市| 万源市| 东乌珠穆沁旗| 锦州市| 安阳市| 昭苏县| 涡阳县| 库车县| 饶阳县| 绩溪县| 中牟县| 新邵县| 贵溪市| 天峨县| 丹江口市| 那坡县| 溆浦县| 微山县| 仪征市| 扬州市| 吉木乃县| 杂多县| 黄山市| 阿合奇县| 贺兰县|