标签: android android-service jobintentservice
我的项目中有一个JobIntentService。 但是,当我为此服务创建startService时,“ onHandleWork ”方法仅运行1次。我如何使其定期运行?
答案 0 :(得分:2)
Job Service只是一项服务,并不意味着要定期运行。
您将不得不使用JobScheduler,WorkManager或AlarmManager定期运行它。
请参见this answer that may help you.