JobIntentService定期运行?

时间:2018-08-03 08:41:58

标签: android android-service jobintentservice

我的项目中有一个JobIntentService。  但是,当我为此服务创建startService时,“ onHandleWork ”方法仅运行1次。我如何使其定期运行?

1 个答案:

答案 0 :(得分:2)

Job Service只是一项服务,并不意味着要定期运行。

您将不得不使用JobSchedulerWorkManagerAlarmManager定期运行它。

请参见this answer that may help you.