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

溫馨提示×

溫馨提示×

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

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

如何在Android中獲取短信驗證碼

發布時間:2021-02-19 15:44:16 來源:億速云 閱讀:198 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關如何在Android中獲取短信驗證碼,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

package com.rain.messageandsend;
import android.os.CountDownTimer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.cloopen.rest.sdk.CCPRestSmsSDK;
import java.util.HashMap;
import java.util.Random;
import java.util.Set;
public class MainActivity extends AppCompatActivity {
  private Button mBt_message;
  private EditText mEt_number;
  private String mNumber;
  private MyCountDown mCountDown;

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  initView();
  long time = Timeutils.getTime(this, "time");
  //更新時間ui
  if(time==0){
    time = 60000;
    mCountDown = new MyCountDown(mBt_message,time,1000);
  }else{
    mCountDown = new MyCountDown(mBt_message,time,1000);
    mCountDown.start();
  }

}

private void initView() {
  mBt_message = (Button) findViewById(R.id.bt_number);
  mEt_number = (EditText) findViewById(R.id.et_number);
}

//獲取驗證碼
public void click01(View view){
  getMessageNumber();
  Toast.makeText(this, "點擊了獲取驗證碼", Toast.LENGTH_SHORT).show();
  mCountDown.start();
}

//通過這個方法獲取驗證碼的
private void getMessageNumber() {
  HashMap<String, Object> result = null;

  //初始化SDK
  CCPRestSmsSDK restAPI = new CCPRestSmsSDK();

  //******************************注釋*********************************************
  //*初始化服務器地址和端口                            *
  //*沙盒環境(用于應用開發調試):restAPI.init("sandboxapp.cloopen.com", "8883");*
  //*生產環境(用戶應用上線使用):restAPI.init("app.cloopen.com", "8883");    *
  //*******************************************************************************
  restAPI.init("sandboxapp.cloopen.com", "8883");

  //******************************注釋*********************************************
  //*初始化主帳號和主帳號令牌,對應官網開發者主賬號下的ACCOUNT SID和AUTH TOKEN   *
  //*ACOUNT SID和AUTH TOKEN在登陸官網后,在“應用-管理控制臺”中查看開發者主賬號獲取*
  //*參數順序:第一個參數是ACOUNT SID,第二個參數是AUTH TOKEN。          *
  //*******************************************************************************
  restAPI.setAccount("", "");


  //******************************注釋*********************************************
  //*初始化應用ID                                 *
  //*測試開發可使用“測試Demo”的APP ID,正式上線需要使用自己創建的應用的App ID   *
  //*應用ID的獲取:登陸官網,在“應用-應用列表”,點擊應用名稱,看應用詳情獲取APP ID*
  //*******************************************************************************
  restAPI.setAppId("");


  //******************************注釋****************************************************************
  //*調用發送模板短信的接口發送短信                                 *
  //*參數順序說明:                                         *
  //*第一個參數:是要發送的手機號碼,可以用逗號分隔,一次最多支持100個手機號             *
  //*第二個參數:是模板ID,在平臺上創建的短信模板的ID值;測試的時候可以使用系統的默認模板,id為1。  *
  //*系統默認模板的內容為“【云通訊】您使用的是云通訊短信模板,您的驗證碼是{1},請于{2}分鐘內正確輸入”*
  //*第三個參數是要替換的內容數組。                                                               *
  //**************************************************************************************************

  //**************************************舉例說明***********************************************************************
  //*假設您用測試Demo的APP ID,則需使用默認模板ID 1,發送手機號是13800000000,傳入參數為6532和5,則調用方式為      *
  //*result = restAPI.sendTemplateSMS("13800000000","1" ,new String[]{"6532","5"});                                     *
  //*則13800000000手機號收到的短信內容是:【云通訊】您使用的是云通訊短信模板,您的驗證碼是6532,請于5分鐘內正確輸入   *
  //*********************************************************************************************************************

  //四位的隨機數
  mNumber = (new Random().nextInt(8999) + 1000) + "";
  result = restAPI.sendTemplateSMS("此處為手機號碼","1" ,new String[]{mNumber,"5"});

  System.out.println("SDKTestGetSubAccounts result=" + result);
  if("000000".equals(result.get("statusCode"))){
    //正常返回輸出data包體信息(map)
    HashMap<String,Object> data = (HashMap<String, Object>) result.get("data");
    Set<String> keySet = data.keySet();
    for(String key:keySet){
      Object object = data.get(key);
      System.out.println(key +" = "+object);
    }
  }else{
    //異常返回輸出錯誤碼和錯誤信息
    System.out.println("錯誤碼=" + result.get("statusCode") +" 錯誤信息= "+result.get("statusMsg"));
  }
}


//驗證驗證碼
public void click02(View view){
  String infoNumber = mEt_number.getText().toString();
  if(TextUtils.isEmpty(infoNumber)){
    Toast.makeText(this, "驗證碼不能為空", Toast.LENGTH_SHORT).show();
  }else{
    if(infoNumber.equals(mNumber)){
      Toast.makeText(this, "驗證碼正確", Toast.LENGTH_SHORT).show();
    }else{
      Toast.makeText(this, "驗證碼錯誤", Toast.LENGTH_SHORT).show();
    }
  }
}

/**
 * 繼承 CountDownTimer
 *
 * 重寫 父類的方法 onTick() 、 onFinish()
 */

class MyCountDown extends CountDownTimer{

  private Button bt;

  /**
   * @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.
   *      表示以毫秒為單位 倒計時的總數
   *
   *      例如 millisInFuture=1000 表示1秒
   * @param countDownInterval The interval along the way to receive
   *             {@link #onTick(long)} callbacks.
   *      表示 間隔 多少微秒 調用一次 onTick 方法
   *
   *      例如: countDownInterval =1000 ; 表示每1000毫秒調用一次onTick()
   */
  public MyCountDown(Button button,long millisInFuture, long countDownInterval) {
    super(millisInFuture, countDownInterval);
    this.bt = button;
  }

  @Override
  public void onTick(long millisUntilFinished) {
    bt.setText((millisUntilFinished / 1000) + "秒后可重發");
    bt.setClickable(false);
    Timeutils.saveTime(MainActivity.this,"time",millisUntilFinished);
  }

  @Override
  public void onFinish() {
    bt.setClickable(true);
    bt.setText("獲取驗證碼");
  }
 }
}

下面是工具類

package com.rain.messageandsend;
import android.content.Context;
import android.content.SharedPreferences;
/**
 * Created by rain on 2017/8/8 0008.
 */
public class Timeutils {
 private static SharedPreferences sSp;
 public static void saveTime(Context context, String name, long time){
  if(sSp == null){
    sSp = context.getSharedPreferences("ccc", Context.MODE_PRIVATE);
  }
  sSp.edit().putLong(name,time).apply();
}
public static long getTime(Context context, String name){
  if(sSp == null){
    sSp = context.getSharedPreferences("ccc", Context.MODE_PRIVATE);
  }
  return sSp.getLong(name,0L);
 }
}

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/activity_main"
android:orientation="vertical"
android:paddingBottom="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
android:paddingLeft="16dp"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
  android:layout_gravity="center_vertical"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
  <EditText
    android:layout_weight="2"
    android:layout_width="0dp"
    android:hint="請輸入驗證碼"
    android:id="@+id/et_number"
    android:layout_height="wrap_content"/>
  <Button
    android:onClick="click01"
    android:gravity="center"
    android:id="@+id/bt_number"
    android:layout_gravity="center_vertical"
    android:layout_width="0dp"
    android:text="獲取驗證碼"
    android:layout_weight="1"
    android:layout_height="wrap_content"/>
</LinearLayout>
<Button
  android:onClick="click02"
  android:layout_marginTop="16dp"
  android:gravity="center"
  android:layout_width="match_parent"
  android:text="驗證"
  android:layout_height="wrap_content"/>
</LinearLayout>

關于如何在Android中獲取短信驗證碼就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

乐清市| 永安市| 台江县| 武强县| 绥芬河市| 沙田区| 北海市| 门源| 库伦旗| 江达县| 惠安县| 芒康县| 诸暨市| 邵阳县| 墨江| 辉南县| 揭阳市| 边坝县| 芒康县| 沙湾县| 平遥县| 巴彦淖尔市| 当雄县| 湖南省| 涟源市| 尤溪县| 岱山县| 屏边| 威远县| 昌乐县| 泸定县| 龙南县| 寿宁县| 东乡族自治县| 甘肃省| 什邡市| 南昌县| 麻栗坡县| 郓城县| 台南县| 肥西县|