android8.0开启服务,Android8.0以上版本启动后台service报IllegalStateException
时间: 2024-03-15 19:44:02 浏览: 124
在 Android 8.0 及以上版本,为了增强应用程序的安全性,Android 引入了后台限制,禁止未在前台运行的应用程序启动服务。如果您想在后台启动服务,需要使用 `startForegroundService()` 方法。这个方法会启动一个前台服务,然后你可以在服务启动后在通知栏显示一个通知,以此来告知用户服务正在运行。
以下是一个使用 `startForegroundService()` 的示例代码:
```
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// 创建一个 NotificationChannel
NotificationChannel channel = new NotificationChannel("channel_id", "channel_name", NotificationManager.IMPORTANCE_DEFAULT);
// 向系统注册 NotificationChannel
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.createNotificationChannel(channel);
}
// 创建一个 Intent,启动你的服务
Intent serviceIntent = new Intent(this, YourService.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// 在 Android 8.0 及以上版本上,需要调用 startForegroundService() 方法启动服务。
startForegroundService(serviceIntent);
} else {
// 在 Android 8.0 以下版本上,可以直接调用 startService() 方法启动服务。
startService(serviceIntent);
}
```
注意:如果你使用的是 `startForeground()` 方法,会在 Android 8.0 及以上版本上抛出 `IllegalStateException` 异常,因为 Android 8.0 及以上版本禁止在后台启动服务。
阅读全文