其他分享
首页 > 其他分享> > android framework misc

android framework misc

作者:互联网

android framework misc

Intent发送与接收

系统(framework)发送Intent,可以发送Intent的API如下:
sendBroadcast
sendOrderedBroadcast
sendBroadcastAsUser

apk注册Intent接收,在系统(framework)发送Intent时将收到filtered Intent,并处理:
private BroadcastReceiver mReceiver = new BroadcastReceiver(){
public void onReceive(final Context context, Intent intent) {

标签:misc,发送,framework,Intent,android,BroadcastReceiver
来源: https://www.cnblogs.com/aspirs/p/15347946.html