程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 代碼-android中發送驗證碼,才開始學的,求大神解答。

代碼-android中發送驗證碼,才開始學的,求大神解答。

編輯:編程綜合問答
android中發送驗證碼,才開始學的,求大神解答。

這個現在還沒有數據庫,只是我學習用的,點發送驗證碼,後面會提示多少秒後重新獲取驗證碼,求大神給段代碼。

最佳回答:


MyCoun myCoun = new MyCoun(60000, 1000);

/**
* 倒計時定時器
*
* @author 1
*
*/
public class MyCoun extends CountDownTimer {

    public MyCoun(long millisInFuture, long countDownInterval) {
        super(millisInFuture, countDownInterval);
    }

    @Override
    public void onFinish() {
        fasong.setBackgroundResource(R.drawable.u26);
        fasong.setTextColor(Color.parseColor("#000000"));
        fasong.setText(R.string.huoquduanxin);
        fasong.setEnabled(true);
    }

    @Override
    public void onTick(long millisUntilFinished) {
        fasong.setText(("獲取動態碼(" + millisUntilFinished / 1000) + ")");
    }
}

在按鈕的點擊事件中 

fasong.setEnabled(false);
myCoun.start();

anselmoe
qq_22202859
anselmoe
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved