标签:android des style blog color strong io 数据
1.在代码中注册与在AndroiManifest.xml注册的区别
(a)在代码中注册可以控制注册与注销的时间。比如在onCreate-onDestory, onStart-onStop, onResume-onPause里面去注册或者注销receiver。
在manifest.xml里面一经注册,那么receiver会一直运行,除非程序被删除。
比如希望接收到短信发来的广播,代码如下
<receiver android:name="MyBroadcastReceiver"> <intent-filter> <action android:name="android.provider.Telephony.SMS_RECEIVED" /> </intent-filter> </receiver>
(b)一般自己发送的广播可能过代码registerReceiver注册,接收系统的广播一般用<receiver>注册
(c)手动注册资源消耗更少
2.由于ANR限制BroadcastReceiver的onReceive函数必须在10秒内完成,而且onReceive默认会在主线程中执行,所以BroadcastReceiver中不适合做一些耗时操作,对于耗时操作需要交给service处理,比如网络或数据库耗时操作、对话框的显示(因为现实时间可能超时,用Notification代替)。
BroadcastReceiver学习笔记,布布扣,bubuko.com
标签:android des style blog color strong io 数据
原文地址:http://www.cnblogs.com/baron89/p/3885219.html