service启动过程:
- ContextWrapper.startService
- (ContextImpl)mBase.startService
a. 大部分操作是在mBase中实现,桥接设计模式 - AMS(binder)启动service 远程过程调用
- mService(Activityaervices).startServiceLocked
- mService.bringUpserviceLocked--->mService.realStartServiceLocked
- 在realStartServiceLocked中
a. app.thread.scheduleCreateService(调用service onCreate )
b. sendServiceArgsLocked (调用Service 其他方法 onStartCommand)
c. 这两个方法都是跨进程通信
d. app.thread 是IApplicationThread类型,实际上是个Binder 具体实现为ApplicationThread 和ApplicationthreadNative(前者是继承后者)
e. app.threadscheduleCreateService 中发送Handler H
f. H 通过ActivityThread.handleCreateService完成Service的最终启动
g. ActivityThread.handleCreateService
i. 通过类加载器创建Service
ii. 准备好Application实例,创建ContextImpl,通过Service的attach方法建立关系
iii. 调用service.onCreate
网友评论