如何在不显示通知点的情况下继续在Android Oreo中进行后台服务?我使用通知继续后台服务,但我不想显示正在运行的服务的通知。
如果您可以在此处的某处正确阅读 Android Oreo 8.0 文档,则可能未在此处发布此问题。
步骤1: 确保您将服务作为前台启动,Service如以下代码所示
Service
ContextCompat.startForegroundService(mainActivity, new Intent(getContext(), GpsServices.class)); ContextCompat.startForegroundService(mainActivity, new Intent(getContext(), BluetoothService.class)); ContextCompat.startForegroundService(mainActivity, new Intent(getContext(), BackgroundApiService.class));
步骤2: 使用通知显示您的服务正在运行。在的onCreate方法中的代码下面添加一行Service。
onCreate
@Override public void onCreate() { ... if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { startForeground(NOTIFICATION_ID, notification); } ... }
步骤3:notification在服务停止或销毁时删除。
notification
@Override public void onDestroy() { ... if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { stopForeground(true); //true will remove notification } ... }
该解决方案的一个问题是,它将一直显示,notification直到您Service在 Android Oreo 8.0 上运行的所有设备上运行为止。
我确信即使该应用程序处于后台或处于终止状态,该解决方案也能正常工作。
重要说明: 在ANDROID OREO 8.0中必须显示在后台运行服务的通知(在后台或处于杀死状态的APP)。您 不能逃避 它。因此, 建议 您对应用程序进行必要的更改,以按照ANDROID遵循或要求的 最佳 做法正确地使它正常工作。
我希望这可能有助于解决您的问题。