Код: Выделить всё
void startResendTimer(){
resendOtpTextView.setEnabled(false);
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
timeoutSeconds--;
resendOtpTextView.setText("Resend OTP in "+timeoutSeconds +" seconds");
if(timeoutSeconds {
resendOtpTextView.setEnabled(true);
});
}
}
},0,1000);
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... s-expected
Мобильная версия