Android开发之BroadcastReceiver

时间:2022-08-09 02:25:35

BroadcastReceiver:广播接收者。用来接收系统或应用中的广播。

在Android系统中,广播体现在方方面面,例如当开机完成后系统会产生一条广播,接收到这条广播就能实现开机启动服务的功能;当网络状态改变时系统会产生一条广播,接收到这条广播就能及时地做出提示和保存数据等操作;当电池电量改变时,系统会产生一条广播,接收到这条广播就能在电量低时告知用户及时保存进度,等等。

Android中的广播机制设计的非常出色,很多事情原本需要开发者亲自操作的,现在只需等待广播告知自己就可以了,大大减少了开发的工作量和开发周期。而作为应用开发者,就需要数练掌握Android系统提供的一个开发利器,那就是BroadcastReceiver。下面我们就对BroadcastReceiver逐一地分析和演练,了解和掌握它的各种功能和用法。

静态注册:

 <receiver android:name=".MyReceiver">
<intent-filter>
<action android:name="android.intent.action.MY_BROADCAST" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>

广播接收者:

 package com.example.hxdn.broadcastreceivertest;

 import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log; /**
* Created by hxdn on 2015/9/17.
*/
public class MyReceiver extends BroadcastReceiver {
private static final String TAG="MyReceiver";
@Override
public void onReceive(Context context,Intent intent)
{
String msg=intent.getStringExtra("msg");
Log.i(TAG,msg);
}
}

Activity:

 package com.example.hxdn.broadcastreceivertest;

 import android.content.Intent;
import android.content.IntentFilter;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button; public class MainActivity extends AppCompatActivity { MyReceiver myReceiver=null;
IntentFilter intentFilter=null;
private Button btn1=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
init();//动态注册时加入
btn1=(Button)findViewById(R.id.btn1);
btn1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
send();
}
}); }
public void init()
{ myReceiver=new MyReceiver();
intentFilter=new IntentFilter();
intentFilter.addAction("android.intent.action.MY_BROADCAST");
registerReceiver(myReceiver,intentFilter);
} @Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
} @Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId(); //noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
} return super.onOptionsItemSelected(item);
}
public void send()
{
Intent intent=new Intent("android.intent.action.MY_BROADCAST");
intent.putExtra("msg","Hello Receiver");
sendBroadcast(intent);
}
@Override
public void onDestroy()
{
super.onDestroy();
unregisterReceiver(myReceiver);
}
}

动态注册:

 public  void  init()
33 {
34
35 myReceiver=new MyReceiver();
36 intentFilter=new IntentFilter();
37 intentFilter.addAction("android.intent.action.MY_BROADCAST");
38 registerReceiver(myReceiver,intentFilter);
39 }
需要解绑:
 public void onDestroy()
70 {
71 super.onDestroy();
72 unregisterReceiver(myReceiver);
73 }
否则会抛出异常。 广播主要分为三种:

普通广播(Normal Broadcasts):

1、所有广播接收者都可以接收到的广播,同级别的接收者接收顺序随机不确定。

2、不能拦截广播的继续传播也不能处理处理广播

3、同级别动态注册高于静态注册

有序广播(Ordered Broadcasts):

1、按照接收者的优先级接收,优先级可以在intnt-filter里的priority里设置,值越大,优先级越高。

2、可以拦截广播的继续传播,高级别的广播接收器可以决定低级别的广播接收器是否能接收到广播。可以处理广播。

3、同级别动态注册高于静态注册

黏性广播(Sticky Broadcasts):

1、不能处理广播传递给下一个接收者,而且广播一直存在,不销毁。(不常用)

在AndroidManifest.xml的广播注册时加上<intent-filter android:priority="1000"> 
  1. <receiver android:name=".FirstReceiver">
  2. <intent-filter android:priority="1000">
  3. <action android:name="android.intent.action.MY_BROADCAST"/>
  4. <category android:name="android.intent.category.DEFAULT" />
  5. </intent-filter>
  6. </receiver>
android:priority的值从-1000到1000值越大权限越大。
  1. public void send(View view) {
  2. Intent intent = new Intent("android.intent.action.MY_BROADCAST");
  3. intent.putExtra("msg", "hello receiver.");
  4. sendOrderedBroadcast(intent, "scott.permission.MY_BROADCAST_PERMISSION");  //第二参数不为null则需要权限
  5. }

使用sendOrderedBroadcast方法发送有序广播时,需要一个权限参数,如果为null则表示不要求接收者声明指定的权限,如果不为null,则表示接收者若要接收此广播,需声明指定权限。这样做是从安全角度考虑的,例如系统的短信就是有序广播的形式,一个应用可能是具有拦截垃圾短信的功能,当短信到来时它可以先接受到短信广播,必要时终止广播传递,这样的软件就必须声明接收短信的权限。

设置权限则发出的广播只有当你有权限时才能收到。

android:priority值越大则代表这个接受者优先级越高。优先级越高可先处理广播。

优先级高的广播可用abortBroadcast();终止这个广播。