gpt4 book ai didi

java - Android - 每 15 分钟运行一次后台任务,即使应用程序没有运行

转载 作者:IT老高 更新时间:2023-10-28 21:00:11 25 4
gpt4 key购买 nike

我需要构建一个每 10/15 分钟运行一次的后台任务(没关系,两者都很好),即使应用程序没有运行。

我怎样才能做到这一点?我似乎无法理解这一点。

我读到我可以使用某种 runnable() 功能或使用后台服务或 AlarmManager。我在考虑后台服务,因为它也必须在应用程序本身未运行时完成。

有什么更好的方法,我该怎么做?

最佳答案

您已经确定了执行一段代码的时间(间隔),最好使用 AlarmManager因为它更节能。如果您的应用需要监听某种事件,那么 Service 就是您所需要的。

public static void registerAlarm(Context context) {
Intent i = new Intent(context, YOURBROADCASTRECIEVER.class);

PendingIntent sender = PendingIntent.getBroadcast(context,REQUEST_CODE, i, 0);

// We want the alarm to go off 3 seconds from now.
long firstTime = SystemClock.elapsedRealtime();
firstTime += 3 * 1000;//start 3 seconds after first register.

// Schedule the alarm!
AlarmManager am = (AlarmManager) context
.getSystemService(ALARM_SERVICE);
am.setRepeating(AlarmManager.ELAPSED_REALTIME_WAKEUP, firstTime,
600000, sender);//10min interval

}

关于java - Android - 每 15 分钟运行一次后台任务,即使应用程序没有运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16155032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com