当我打电话时this.startService(new Intent(this, Some_Service.class));
,我知道它onCreate()
被调用并跟随onStartCommand()
。
Bur 如果代码onStartCommand()
完成会发生什么?
会Service
自动调用onDestroy()
停止自身吗?
还是我必须打电话this.stopService(new Intent(this, Some_Service.class));
才能做到这一点?