Please enable JavaScript.
Coggle requires JavaScript to display documents.
Android基础 (四大组件 (广播 (静态广播 PMS
动态广播AMS (1,自定义广播接受者BroadcastReceiver,复写onRe…
Android基础
四大组件
-
-
广播
静态广播 PMS
动态广播AMS
1,自定义广播接受者BroadcastReceiver,复写onReceive()
2, 通过Binder机制向AMS注册
3,广播发送者通过Binder机制向AMS发广播
4,AMS查找符合条件的BroadcastReceiver,将广播发送到BroadcastReceiver相应的循环队列中去
5,消息循环执行拿到广播,回调onReceive()
-
-
-
-
-
-
-
-
-
-