码迷,mamicode.com
首页 > 其他好文 > 详细

BroadcastReceiver自学笔记

时间:2014-09-30 09:57:02      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   io   使用   sp   c   on   cti   r   ad   

1. 使用步骤:

   1.1 声明Intent

Intent intent = new Intent("name");------静态常用

IntentFilter filter = new IntentFilter("name");--------动态常用

   1.2 注册

    1.3 接收:利用action或者Bundle

  在OnReceive()中,接收信息

    String action = intent.getAction();

    Bundle bundle = intent.getExtras();

2. 注册方式:

静态-在XML中注册过滤器

动态-在Activity的对应生命周期的函数里,注册和解除注册,要成对出现

3. 生命周期:OnReceive()

BroadcastReceiver自学笔记

标签:style   io   使用   sp   c   on   cti   r   ad   

原文地址:http://www.cnblogs.com/permanent2012moira/p/4001308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!