安卓快速开发框架(十)XBaseAndroid倒计时,定时器
2018-07-05 本文已影响96人
往后余生9375
倒计时
countdownUtils = CountdownUtils.getInstance();
countdownUtils.start(100000,1000);
countdownUtils.setCountdownListener(new CountdownUtils.setOnCountDownListener() {
@Override
public void onTick(int second) {
numberProgressBar.setProgress(100 - second);
}
@Override
public void onFinish() {
}
});
定时器
TimerUtils timer = TimerUtils.getInstance();
timer.setTimer_id(123);
timer.startTimer(5);//单位秒
timer.setTimerListener(new TimerUtils.TimerTaskCallbackListener() {
@Override
public void Timing(int timer_id, int timer_count) {
toast("timer_id:"+timer_id);
}
});