问题描述
- 如何创建一个无限循环?
-
我需要在倒数计时上创建一个无限循环,代码如下:public void countdown() { if (x != null) { x.cancel(); } x = new CountDownTimer(20000, 1000) { public void onTick(long millisUntilFinished) { } public void onFinish() { showNotification(); } }; x.start(); }
X 只是一个静态countdowntimer变量,当 countdown结束时,它显示通知,应该重新启动,如何实现?
时间: 2024-10-28 15:30:02