码迷,mamicode.com
首页 >  
搜索关键字:intentfilter    ( 107个结果
Android 广播监听wifi
第一步:配置AndroidManifest.xml,在application结点下面添加如下代码 同样配置AndroidManifest.xml,添加权限 第二步:注册广播IntentFilter filter = new ...
分类:移动开发   时间:2014-07-09 16:02:08    阅读次数:282
疯狂Android讲义 - 学习笔记(五)
使用Intent和IntentFilter通信Android应用的资源
分类:移动开发   时间:2014-06-15 07:41:44    阅读次数:202
android使用两种方式注册receiver
1、 package com.example.myreceiver; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.content.IntentFilter; import android.view.Menu; import android...
分类:移动开发   时间:2014-06-10 11:10:49    阅读次数:275
android笔记6——intent的使用
今天挑出一节专门来说一下使用intent和intentfilter进行通信。 场景:一个Activity启动另一个Activity。 前面已经讲了Fragment的切换,Fragment顾名思义是基于碎片切换的,假如我们要切换屏幕,或者是service组件等等,这就要用到Intent。 此外还想说明一下,Intent还具有很好的设计思想在里面的。它将各种“启动意图”封装成一个一致编程模型,利...
分类:移动开发   时间:2014-06-08 10:41:07    阅读次数:358
android点滴之标准SD卡状态变化事件广播接收者的注册
目前最完整的,需要注册的动作匹配如下: IntentFilter intentFilter = new IntentFilter(Intent.ACTION_MEDIA_MOUNTED); intentFilter.addAction(Intent.ACTION_MEDIA_UNMOUNTED); intentFilter.addAction(Intent.ACT...
分类:移动开发   时间:2014-05-14 14:45:27    阅读次数:361
Android 之 BroadcaseReceiver
1.在AndroidManifest.xml中注册 2.在Activity中注册MyReceiver receiver = new MyReceiver();IntentFilter filter = ne...
分类:移动开发   时间:2014-05-09 16:24:54    阅读次数:432
自定义广播
mSDStateBrocast = new SDStateBrocast(); IntentFilter intentFilter2 = new IntentFilter(); intentFilter2.addAction(Intent.ACTION_MEDIA_MOU...
分类:其他好文   时间:2014-04-30 02:29:49    阅读次数:514
107条   上一页 1 ... 9 10 11
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!