我正在寻找一个在后台运行的应用程序,记录位置数据,而用户实际上不必将应用程序放在前台,但同时又不会使用太多电池。
我最初想为 BOOT_COMPLETED 设置一个 BroadcastReceiver 并运行一个服务,该服务使用显着运动传感器在它触发时记录位置数据,但自从 Oreo 以来,后台服务有很多限制。
做这个的最好方式是什么?
我正在寻找一个在后台运行的应用程序,记录位置数据,而用户实际上不必将应用程序放在前台,但同时又不会使用太多电池。
我最初想为 BOOT_COMPLETED 设置一个 BroadcastReceiver 并运行一个服务,该服务使用显着运动传感器在它触发时记录位置数据,但自从 Oreo 以来,后台服务有很多限制。
做这个的最好方式是什么?
您可以使用JobService
它在电池和现代方式方面的高效在后台执行任务。
public class YourJobService extends JobService {
@Override
public boolean onStartJob(JobParameters params) {
if (!Utility.isServiceRunning(GetAlertService.class, getApplicationContext())) {
startService(new Intent(getApplicationContext(), GetAlertService.class));
}
jobFinished(params, false);
return true;
}
@Override
public boolean onStopJob(JobParameters params) {
return true;
}
}
你可以像这样按照你想要的方式配置它
ComponentName getAlertJobComponent = new ComponentName(context.getPackageName(), YourJobService.class.getName());
JobInfo.Builder getAlertbuilder = new JobInfo.Builder(Constants.getAlertJobid, getAlertJobComponent);
getAlertbuilder.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY); // require unmetered network
getAlertbuilder.setRequiresDeviceIdle(true); // device should be idle
getAlertbuilder.setPeriodic(10 * 1000);
getAlertbuilder.setRequiresCharging(false); // we don't care if the device is charging or not
JobScheduler getAlertjobScheduler = (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
getAlertjobScheduler.schedule(getAlertbuilder.build());
有关更多详细信息,请参阅此智能作业调度