PHP直播源码,验证码倒计时相关的代码
import android.os.CountDownTimer;
import android.widget.TextView;
public class SmsCodeHelper {
private final TextView textView;
private final long seconds;
public SmsCodeHelper(TextView text, long seconds) {
this.seconds = seconds;
this.textView = text;
}
public interface SmsTimerCall {
void call(boolean finished);
}
public void smsCodeGet(SmsTimerCall call) {
CountDownTimer timer = new CountDownTimer(this.seconds, 1000) {
@Override
public void onTick(long l) {
textView.setClickable(false);
textView.setEnabled(false);
textView.setText(String.format("%s秒后重试", l / 1000 + 1));
call.call(false);
}
@Override
public void onFinish() {
textView.setText("重新获取");
textView.setClickable(true);
textView.setEnabled(true);
call.call(true);
}
};
timer.start();
}
}
以上就是PHP直播源码,验证码倒计时相关的代码, 更多内容欢迎关注之后的文章
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。