问题
I updated android to newer version and suddenly the countdown timer hat was set on my toasts is not working anymore, the toast disappear after little time despite what time I put in my countodown timer. What could have happened?
ClickableSpan clickablespan1 = new ClickableSpan() {
@Override
public void onClick(View widget) {
if (toast != null) {
toast.cancel();
toast = null;
}
toast = Toast.makeText(Poeshitesto.this, "touch to continue", Toast.LENGTH_SHORT);
toast.show();
new CountDownTimer(20000, 1000)
{
public void onTick(long millisUntilFinished) {
if (toast != null) {
toast.show();}}
public void onFinish() { if (toast != null) {
toast.show();}}
}.start();
}
来源:https://stackoverflow.com/questions/56984819/countdown-timer-on-toast-doesnt-work-anymore-after-android-update