当前位置: 代码迷 >> Android >> Android 四大组件 之 content provider 创设流程
  详细解决方案

Android 四大组件 之 content provider 创设流程

热度:22   发布时间:2016-04-28 03:26:15.0
Android 四大组件 之 content provider 创建流程

以下是Source Application去query Target Application中的content provider时的流程,此处只画到content provider启动。



The picture above is the flow chart for how Content Providers started
(1) Source APP Inform AMS to query the content provider with URL, in blue;
(2) AMS searched all registered content providers, once not found, it will 1 st
start the Application whose AndroidManifest host such Content provider,
in Aubergine;
(3) create the content provider in bindApplication, in red;
(4) Inform the content provider created to AMS, AMS would store it to its local
Map, in yellow;
(5) Source Application can query the content provider conents now, here just ignore
The invocations.


  相关解决方案