在“杀死”应用后,它会在我的后台服务中调用onStartCommand

时间:2016-04-28 14:17:22

标签: android service background

onCreate的我的MainActivity中,我有这个代码启动我的后台服务:

SharedPreferences settings = getSharedPreferences("PREFS",0);
if(settings.getBoolean("backgroundRunning",true)&&isServiceRunning()==false){
    Intent intent = new Intent(this,BackgroundService.class);
    startService(intent);
}

杀死app onStartCommand()后再次调用。 onDestroy()很清楚。

0 个答案:

没有答案