国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

android實(shí)現(xiàn)驗(yàn)證碼按鈕

2019-10-21 21:47:39
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

開(kāi)發(fā)過(guò)程中會(huì)遇見(jiàn)很多app注冊(cè)時(shí),需要通過(guò)手機(jī)發(fā)送驗(yàn)證碼驗(yàn)證 ,這是可以封裝一個(gè)驗(yàn)證碼按鈕

android,驗(yàn)證碼,按鈕

attrs.xml

<?xml version="1.0" encoding="utf-8"?><resources>  <declare-styleable name="VerifyCodeButton">    <!--默認(rèn)背景-->    <attr name="android:background" />    <!--點(diǎn)擊后背景-->    <attr name="clickedBackground" format="reference" />    <!--倒計(jì)時(shí)間-->    <attr name="countdownTime" format="integer" />    <!--倒計(jì)時(shí)間后提示文字-->    <attr name="countdownText" format="string" />  </declare-styleable></resources>

自定義Button

public class VerifyCodeButton extends Button {  private Context mContext;  private int mClickedBackground;//點(diǎn)擊后背景  private int mBackground;//當(dāng)前背景  private String mCountdownownText;  private int mCountdownTime = 60;  private TimeCount mTimeCount;  public VerifyCodeButton(Context context) {    this(context, null);  }  public VerifyCodeButton(Context context, AttributeSet attrs) {    this(context, attrs, android.R.attr.buttonStyle);  }  public VerifyCodeButton(Context context, AttributeSet attrs, int defStyleAttr) {    super(context, attrs, defStyleAttr);    mContext = context;    initAttrs(attrs);    init();  }  private void initAttrs(AttributeSet attrs) {    TypedArray typedArray = mContext.obtainStyledAttributes(attrs, R.styleable.VerifyCodeButton);    mBackground = typedArray.getResourceId(R.styleable.VerifyCodeButton_android_background, mBackground);    mClickedBackground = typedArray.getResourceId(R.styleable.VerifyCodeButton_clickedBackground, mClickedBackground);    mCountdownTime = typedArray.getInt(R.styleable.VerifyCodeButton_countdownTime, mCountdownTime);    mCountdownownText = typedArray.getString(R.styleable.VerifyCodeButton_countdownText);    typedArray.recycle();  }  private void init() {    setBackgroundResource(mBackground);    mTimeCount = new TimeCount(mCountdownTime * 1000, 1000);  }  /**   * 開(kāi)始計(jì)時(shí)   */  public void start() {    mTimeCount.start();  }  /**   * 取消計(jì)時(shí)   */  public void cancle() {    mTimeCount.cancel();    setClickable(true);    setText(mCountdownownText != null ? mCountdownownText : "");    setBackgroundResource(mBackground);  }  class TimeCount extends CountDownTimer {    /**     * @param millisInFuture  總時(shí)間     * @param countDownInterval 間隔時(shí)間     */    public TimeCount(long millisInFuture, long countDownInterval) {      super(millisInFuture, countDownInterval);    }    /**     * @param millisUntilFinished 當(dāng)前時(shí)間     */    @Override    public void onTick(long millisUntilFinished) {      setClickable(false);      setText(String.valueOf(millisUntilFinished / 1000 + "s"));      setBackgroundResource(mClickedBackground);    }    @Override    public void onFinish() {      setClickable(true);      setText(mCountdownownText != null ? mCountdownownText : "");      setBackgroundResource(mBackground);    }  }}

自定義2個(gè)drawable

<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"  android:shape="rectangle">  <corners android:radius="5dp" />  <solid android:color="#feacc3" /></shape>
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"  android:shape="rectangle">  <corners android:radius="5dp" />  <solid android:color="#999999" /></shape>

layout.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout 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"  android:orientation="vertical"  tools:context="com.sample.verify.MainActivity">  <com.sample.verify.widget.VerifyCodeButton    android:id="@+id/btn_verify_code"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_gravity="center"    android:layout_margin="10dp"    android:background="@drawable/bg_btn_default"    android:gravity="center"    android:text="獲取驗(yàn)證碼"    android:textColor="#ffffff"    android:textSize="14sp"    app:clickedBackground="@drawable/bg_btn_clicked"    app:countdownText="重新獲取"    app:countdownTime="10" />  <Button    android:id="@+id/btn_cancle"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_gravity="center_horizontal"    android:text="取消倒計(jì)時(shí)" /></LinearLayout>

Activity

package com.sample.verify;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.view.View;import android.widget.Button;import com.sample.verify.widget.VerifyCodeButton;public class MainActivity extends AppCompatActivity implements View.OnClickListener {  private VerifyCodeButton btn_verify_code;  private Button btn_cancle;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    setTitle("驗(yàn)證碼");    btn_verify_code = (VerifyCodeButton) findViewById(R.id.btn_verify_code);    btn_cancle = (Button) findViewById(R.id.btn_cancle);    btn_verify_code.setOnClickListener(this);    btn_cancle.setOnClickListener(this);  }  @Override  public void onClick(View v) {    switch (v.getId()) {      case R.id.btn_verify_code:        btn_verify_code.start();        break;      case R.id.btn_cancle:        btn_verify_code.cancle();        break;    }  }  @Override  protected void onDestroy() {    super.onDestroy();    if (btn_verify_code != null) {      btn_verify_code.cancle();    }  }}

代碼下載:android實(shí)現(xiàn)驗(yàn)證碼按鈕

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持VEVB武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到Android開(kāi)發(fā)頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 河西区| 思茅市| 兴和县| 望奎县| 南昌县| 天全县| 淅川县| 曲麻莱县| 许昌市| 布尔津县| 自贡市| 聂拉木县| 玛沁县| 大城县| 沙河市| 平凉市| 富民县| 大渡口区| 吴堡县| 莱阳市| 邮箱| 大渡口区| 冀州市| 望都县| 津市市| 治多县| 广平县| 滨州市| 长岭县| 辉南县| 陆河县| 惠来县| 清苑县| 霸州市| 璧山县| 顺义区| 巩义市| 德江县| 娄烦县| 萍乡市| 滕州市|