在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()
很清楚。