Oreo: startService() doesn't throw IllegalStat

2019-05-18 04:11发布

问题:

According to the background execution limits introduced in Android Oreo, calling startService when the app is in background should throw an IllegalArgumentException. Check this question: Android 8.0: java.lang.IllegalStateException: Not allowed to start service Intent.

I created a sample app targetting Android Oreo that does the following:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            startService(new Intent(MainActivity.this, MyService.class));
        }
    }, 5000);
}

Then I start the app and after press the home button immediately bringing the app to the background state. But the exception is not thrown. How can it be? I expect the app to crash in this case.

回答1:

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.