service 执行完逻辑后 调用了 onDestroy(); 但是我又杀掉进程,log 还会打印 Force stopping service ServiceRecord{f2c4e29 u0 ; onDestory 后 service 还在吗?
1
zhaohui318 2021-03-26 14:38:04 +08:00
onDestroy() 是写给系统调用的, 自己想要消灭 service 使用 stopSelf()
|