Oreo: startService() doesn't throw IllegalStateException when called in background

时间秒杀一切 提交于 2019-12-05 20:29:51

According to Google's documentation on background service limitations:

While an app is in the foreground, it can create and run both foreground and background services freely. When an app goes into the background, it has a window of several minutes in which it is still allowed to create and use services.

Generally I've found the window to be something around a minute, but that can certainly be different for others.

Take a look at your overall device logs (run adb logcat from the command line or turn off filters in Android Studio's Logcat window) after you've backgrounded the app and look for something like:

09-26 13:25:37.150 4741 4756 W ActivityManager: Stopping service due to app idle: u0a267 -1m12s700ms com.example/.MyService

Any request to start a service after that should cause the exception. I'm guessing you'll need to up the timeout to something closer to a minute or two.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!