我有一个安卓应用程序。在一项活动中,我启动了这样的服务:
Intent startIntent = new Intent(_context, HandlingService.class);
_context.startService(startIntent);
处理服务定义如下:
public class HandlingService extends IntentService
然后在HandlingService里面我有这个:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
super.onStartCommand(intent, startId, startId);
Log.v(ApplicationName,"HandlingService.onStartCommand");
if ((flags & START_FLAG_RETRY) == 0){
Log.v(ApplicationName,"Service is restarting");
}
return START_STICKY;
}
和这个:
@Override
protected void onHandleIntent(Intent sourceIntent) {
Log.v(ApplicationName, "HandlingService.onHandleIntent");
sendSomething();
}
最后:
protected void sendSomething() {
while (numberOfTry > 0) {
numberOfTry++;
Log.v(ApplicationName,"HandlingService.sending Something. Try# " + numberOfTry);
}
}
numberOfTry 从 1 开始。
然后从启动服务的活动中,当我单击取消按钮时,我称之为:
Intent stopIntent = new Intent(CallingActivity.this, HandlingService.class);
CallingActivity.this.stopService(stopIntent);
我看到HandlingService.OnDestroy 被调用,但我一直看到“HandlingService.sendingSomething.Try#”的日志和越来越多的数字。
问题:如果我已经通过调用 stopService 停止了它,为什么它仍然存在?
提前致谢!吉列尔莫。