Android 四大组件 之 bindService流程

来源:互联网 发布:js 防水 编辑:程序博客网 时间:2024/05/22 06:24

下图描述从一个Application A如何bind在Application B中的Service.




The picture above is the flow chart for how the source Application bind a target service
Major includes four steps:
(1) Inform AMS to start the bind, flow chart in blue;
(2) Start the target application process once not yet created, also create the 
            Activity Thread, in Aubergine;;
(3) Create the service, in red;
(4) Bind Service and push it, in yellow.

0 0