在Android中固定时间后如何重复执行任务?

在Android中固定时间后如何重复执行任务?,第1张

在Android中固定时间后如何重复执行任务?

使用以下命令设置重复任务:

//Declare the timerTimer t = new Timer();//Set the schedule function and ratet.scheduleAtFixedRate(new TimerTask() {    @Override    public void run() {        //Called each time when 1000 milliseconds (1 second) (the period parameter)    }},//Set how long before to start calling the TimerTask (in milliseconds)0,//Set the amount of time between each execution (in milliseconds)1000);

如果您想取消任务,只需调用

t.cancel()
这里
t
就是您的
Timer
对象

并且您还可以检查答案下方的评论,他们已经提供了有关此内容的简短信息。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5426881.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存