Android广播接收器BroadcastRceiver
一、使用BroadcastRceiver
1、创建BroadcastRceiver(MyRceiver),重写OnReceiver:
public void onReceive(Context context, Intent intent) {
System.out.println("接收到了消息,消息内容是:"+intent.getStringExtra("data"));
}
2、在主布局添加一个按钮:
<Button
android:text="发送消息"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btnSendMsg" />
3、实现发送消息按钮的监听功能:
findViewById(R.id.btnSendMsg).setOnClickListener(this);
public void onClick(View v) {
switch(v.getId()){
case R.id.btnSendMsg:
Intent i = new Intent(this,MyReceiver.class);
i.putExtra("data","Android");
sendBroadcast(i);
break;
}
}
二、动态注册和注销BroadcastReceiver
在某种情况,我们并不希望BroadcastReceiver始终从处于监听状态。这就需要我们动态地注册和注销BroadcastReceiver。
1、删除AndroidManifest.xml中关于MyReceiver的配置,则不能再发送消息:
<receiver
android:name=".MyReceiver"
android:enabled="true"
android:exported="true"></receiver>
2、在主布局中添加注册和注销按钮:
<Button
android:text="注册接收器"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btnRes" />
<Button
android:text="注销接收器"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btnUnres" />
3、MyReceiver文件:
public static final String ACTION = "com.w.learnbroadcastrceiver.intent.action.MyReceiver";
4、功能实现:
//防止重复注册多个Receive
private MyReceiver receiver = null;
findViewById(R.id.btnRes).setOnClickListener(this);
findViewById(R.id.btnUnres).setOnClickListener(this);
public void onClick(View v) {
switch(v.getId()){
case R.id.btnSendMsg:
// Intent i = new Intent(this,MyReceiver.class);
Intent i = new Intent(MyReceiver.ACTION); //隐式Intent
i.putExtra("data","Android");
sendBroadcast(i);
break;
case R.id.btnRes:
if(receiver == null){
receiver = new MyReceiver();
registerReceiver(receiver,new IntentFilter(MyReceiver.ACTION));
}
break;
case R.id.btnUnres:
if(receiver != null){
unregisterReceiver(receiver);
receiver = null;
}
break;
}
}
三、BroadcastRceiver的优先级
1、Androidmanifest.xml中后注册的Receiver先接收到消息,即后注册的Receiver优先级高。
<intent-filter>中属性 android:priority="10",优先级越高就越先接收到消息
2、优先级高的receiver不想让后续的receiver接收到消息,如何做(MyReceiver.java)?
public void onReceive(Context context, Intent intent) {
System.out.println("MyReceiver 接收到了消息");
abortBroadcast(); //中断广播(MyReceiver比MyReceiver1优先级高的情况)
}
而MainActivity.java中:
//sendBroadcast(i);
sendOrderedBroadcast(i,null); //参数分别代表Intent对象和权限
Android广播接收器BroadcastRceiver的更多相关文章
- android广播接收器
Android程序创建广播接收器继承BroadcastReceiver Android广播接收器需要在AndroidManifest.xml文件中声明: <recevie android:nam ...
- Xamarin.Android广播接收器与绑定服务
一.前言 学习了前面的活动与服务后,你会发现服务对于活动而言似乎就是透明的,相反活动对于服务也是透明的,所以我们还需要一中机制能够将服务和活动之间架起一座桥梁,通过本节的学习,你将会学到广播与绑定服务 ...
- Android广播接收器Broadcast Receiver-android学习之旅(十二)
首先继承BroadcastReceiver类,并在manifest中注册 public class MyReceiver extends BroadcastReceiver { public MyRe ...
- Android广播接收器和Activity间传递数据
Activity向广播接收器传递数据很简单,只需要在发送广播前将数据put进Intent中就行了. 广播接收器怎么向Activity传送数据?这里要用到接口,通过在广播接收器里定义一个接口,然后让接收 ...
- Android广播接收器里弹出对话框
不多说,直接上车... public class MyReceiver extends BroadcastReceiver { @Override public void onReceive(fina ...
- android广播接收器BroadcastReceiver
首先看一下什么是 BroadcastReceiver BroadcastReceiver:直译是"广播接收者",所以它的作用是用来接收发送过来的广播的. 那我们有必要知道:什么是广 ...
- (八)Android广播接收器BroadcastReceiver
一.使用Broadcast Reciver 1.右击java文件夹,new->other->Broadcast Receiver后会在AndroidManifest.xml文件中生成一个r ...
- Android -- 简单广播接收与发送(2)--动态注册广播接收器
1. 效果图
- Android基础总结(4)——广播接收器
在Android中的每个应用程序可以对自己感兴趣的广播进行注册,这样该程序就只会接收自己所关心的广播内容,这些广播可能来自于系统的,也可能来自于其他应用程序的.Android提供了一整套完整的API, ...
随机推荐
- C++实例讲解Binder通信
binder是android里面的通信机制,这就不说它如何如何好了,Goog已经说过了,这里不多说.binder是一个面向对象的编程方法,大量使用虚函数类.最近研究binder看到一网友写的,就借鉴一 ...
- gcc/linux内核中likely、unlikely和__attribute__(section(""))属性
查看linux内核源码,你会发现有很多if (likely(""))...及if (unlikely(""))...语句,这些语句其实是编译器的一种优化方式,具 ...
- .net core ClaimsPrincipal Class
hClaimsPrincipal Class ttps://msdn.microsoft.com/en-us/library/system.identitymodel.services.claimsp ...
- Java To CSharp源代码转换
前言 开发环境 客户端:Unity3D开发(C#) 服务器:Java (基于Java7) 日 期:2016年09月 需求说明 部分服务器的部分逻辑功能在客户端实现一遍,可以简单的理解为服务器的部分 ...
- BZOJ 1927: [Sdoi2010]星际竞速
1927: [Sdoi2010]星际竞速 Time Limit: 20 Sec Memory Limit: 259 MBSubmit: 2051 Solved: 1263[Submit][Stat ...
- ngx_http_uwsgi_module模块.md
ngx_http_uwsgi_module ngx_http_uwsgi_module模块允许将请求传递到uwsgi服务器. 示例配置: location / { include uwsgi_para ...
- [LeetCode] Dungeon Game 地牢游戏
The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. ...
- [LeetCode] Add Binary 二进制数相加
Given two binary strings, return their sum (also a binary string). For example,a = "11"b = ...
- 【swift学习笔记】五.使用枚举优雅的管理Segue
在做页面转跳的时候,我们要给Segue命名,如果Segue多了,管理他们就是一个恶梦.我们可以枚举更优雅的管理这些Segue. 1.我们先来建立一个protocol,他的功能就是让实现类实现一个Seg ...
- 【ios开发】使用自定义的TableViewCell
当系统自带的cell无法满足我们的要求的时候,我们就可以自定义自己的cell. 先看看效果,这个效果有点重复造轮子的感觉,因为UITableView已经实现了这种布局. 打造自己的cell只需简单的3 ...