博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Service工作过程
阅读量:6817 次
发布时间:2019-06-26

本文共 1836 字,大约阅读时间需要 6 分钟。

Service两种工作状态的作用

1)启动状态:用于执行后台计算

2)绑定状态:用于其他组件和Service的交互

注意:Service这两种状态可以共存,即Service既可以处于启动状态也可以同时处于绑定状态

Service启动过程

ContextWrapper.startService-->

ContextImpl.startService-->

ContextImpl.startServiceCommon-->

ActivityManagerNative.getDefault().startService-->

ActivityManagerService.startService-->

ActiveServices.startServiceLocked-->

ActiveServices.startServiceInnerLocked-->

ActiveServices.bringUpServiceLocked-->

ActiveServices.realStartServiceLocked-->

ApplicationThread.scheduleCreateService-->

(Handler)H.handleMessage-->

ActivityThread.handleCreateService-->

ActivityThread.handleServiceArgs-->

Service.onStartCommand

handleCreateService主要完成几件事:

1)通过类加载器创建Service的实例

2)创建Application对象并调用其onCreate,当然Application的创建过程只会有一次

3)创建ContextImpl对象并通过Service的attach方法建立二者之间的关系,这个过程和Activity实际上是类似的,毕竟Service和Activity都是一个Context

4)调用Service的onCreate方法并将Service对象存储到ActivityThread中的一个列表中

Service绑定过程

ContextWrapper.bindService-->

ContextImpl.bindService-->

ContextImpl.bindServiceCommon-->

ActivityManagerService.bindService-->

ActiveServices.bindServiceLocked-->

ActivityManagerService.bringUpServiceLocked-->

ActivityManagerService.realStartServiceLocked-->

ApplicationThread.scheduleBindService-->

ActiveServices.requestServiceBindingLocked-->

ActivityThread.handleBindService-->

ServiceConnection.onServiceConnected-->

ActivityManagerNative.getDefault().publishService-->

ActivityManagerService.publishService-->

ActiveServices.publishServiceLocked-->

ServiceDispatcher.InnerConnection.connected()-->

ServiceDispatcher.connected()-->

RunConnection.run-->

ServiceDispatcher.doConnected-->

ServiceConnection.onServiceConnected

No1:

ServiceDispatcher起着连接ServiceConnection和InnerConnection的作用

No2:

bindServiceCommon主要完成两件事:

1)将客户端的ServiceConnection对象转化为ServiceDispatcher.InnerConnection对象

2)接着通过AMS来完成Service的具体的绑定过程,这对应于AMS的bindService方法

转载地址:http://vlbzl.baihongyu.com/

你可能感兴趣的文章
软件定时器算法
查看>>
pt-archiver 数据删除、迁移工具使用
查看>>
下载网站地址
查看>>
桌面虚拟化浅谈
查看>>
我的友情链接
查看>>
将 TensorFlow 移植到 Android手机,实现物体识别、行人检测和图像风格迁移详细教程...
查看>>
Hyper-V 自动化支持技术
查看>>
VS2010启动调试时报“未能将脚本调试器附加到计算机”
查看>>
Python中的一些面试题(2)
查看>>
无法启动 DTC 分布式事务服务,MS DTC 发生服务特定错误: 3221229584
查看>>
基于HTTP协议的轻量级开源简单队列服务:HTTPSQS
查看>>
【精品教程】Android高手进阶教程pdf分享
查看>>
VB.NET 自动打包程序
查看>>
CISCO引擎RPR SSO
查看>>
LINUX APACHE 安装测试
查看>>
Java导致登录UCS Manager异常
查看>>
HTTP协议
查看>>
Win10怎么改Host文件?Win10编辑host文件方法(无视权限)
查看>>
sql convert and cast
查看>>
我的NodeJS一年之旅总结
查看>>