在Android 8.0及以上版本中,为了保证用户设备的电池寿命,系统设置了一项限制,即前台服务必须在5秒钟内启动完成。如果前台服务无法在这个限制时间内启动完成,就会抛出android.app.ForegroundServiceDidNotStartInTimeException异常。为了解决这个问题,可以在前台服务的onCreate()方法中加入以下代码:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { // 创建一个通知渠道 NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_HIGH); NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); manager.createNotificationChannel(channel); // 将前台服务创建在通知上 Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID).build(); startForeground(1, notification); } else { startForeground(1, new Notification()); }
这里的CHANNEL_ID和CHANNEL_NAME可以根据实际情况进行设置,startForeground()方法参数中的数字可以自定义,通知的内容可以根据实际情况进行设置。加入以上代码后,可以保证前台服务在限制时间内启动完成,避免抛出异常。