当前位置:   article > 正文

【Android】Broadcast Receiver的基本使用,推一条广播给多个Receiver_sendbroadcast 同时给两个广播发信息

sendbroadcast 同时给两个广播发信息

Android所谓的四大组件:Activity,这个大家只要会写Android程序都知道是一个界面的意思,Service,这个专门用来用来后台推送,就是一条没有界面的线程,具体在《【Android】揭秘如何利用Service与线程制造安卓后台通知栏推送 》(点击打开链接)已经介绍过了,Content Provider这个也很常用,可以快速地直接拿内存卡的数据、Sqlite数据库中的数据,具体在《【Android】利用安卓的数据接口、多媒体处理编写内存卡Mp3播放器app》(点击打开链接)与《【Android】Sqlite数据库增删改查》(点击打开链接)中都已经讲过了。唯独只有广播器Broadcast Receiver少用,数安卓四大组件的时候经常忘记,其实这东西,说白的,就是专门在一堆Java文件中传递数据的。

如下图的一个安卓工程,如果你需要在MainActivity中发送一条信息,同时给Receiver1、2、3三个Java文件收到,然后这3个Java文件同时收到广播之后该干嘛干嘛,那么Broadcast Receiver就派上用场了。其中Receiver1、2、3三个Java文件没有界面,类似于Service,专门用来处理一些后台数据。


比如如下的一个例子。在MainActivity.java点击“发送广播”的按钮,Receiver1、2、3得到广播信息之后,则会Toast信息,基本上,Receiver1、2、3是同时Toast信息的。


制作过程如下,首先是一些比较杂七杂八的部分,在res\values\strings.xml中设置按钮的字体:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <string name="app_name">BroadcastReceiverTest</string>
  4. <string name="action_settings">Settings</string>
  5. <string name="button1">发送广播</string>
  6. </resources>

在res\layout\activity_main.xml中给MainActivity.java布置一个带ID按钮:

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical" >
  5. <Button
  6. android:id="@+id/Button1"
  7. android:layout_width="match_parent"
  8. android:layout_height="wrap_content"
  9. android:text="@string/button1"
  10. android:textSize="24sp" />
  11. </LinearLayout>

MainActivity.java获取这个按钮之后,设置其点击事件是发送广播,广播的标识是android.intent.action.MY_BROADCAST,内容是“呵呵”,相当于现实世界的频段。不是这个频段的Java文件中Broadcast Receiver,是无法接受到“呵呵”信息的。如同《【Android】多个Activity之间利用bundle传递数值》( 点击打开链接)一样,这里的信息载体还是intent。sendBroadcast是发送广播,安卓中特定的方法可以直接使用,将这个intent发送给标识是android.intent.action.MY_BROADCAST的Receiver。

  1. package com.broadcastreceivertest;
  2. import android.os.Bundle;
  3. import android.view.View;
  4. import android.view.View.OnClickListener;
  5. import android.widget.Button;
  6. import android.app.Activity;
  7. import android.content.Intent;
  8. public class MainActivity extends Activity {
  9. private Button button1;
  10. @Override
  11. protected void onCreate(Bundle savedInstanceState) {
  12. super.onCreate(savedInstanceState);
  13. setContentView(R.layout.activity_main);
  14. button1 = (Button) findViewById(R.id.Button1);
  15. button1.setOnClickListener(new OnClickListener() {
  16. @Override
  17. public void onClick(View v) {
  18. Intent intent = new Intent("android.intent.action.MY_BROADCAST");
  19. intent.putExtra("msg", "呵呵!");
  20. sendBroadcast(intent);// 直接就是一个特定方法可以直接使用~
  21. }
  22. });
  23. }
  24. }

接下来,在AndroidManifest.xml注册三个标识是android.intent.action.MY_BROADCAST的Receiver,指明其接受的Java文件,也就是所谓的类,还有广播标识。如同注册Activity一样。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.broadcastreceivertest"
  4. android:versionCode="1"
  5. android:versionName="1.0" >
  6. <uses-sdk
  7. android:minSdkVersion="8"
  8. android:targetSdkVersion="18" />
  9. <application
  10. android:allowBackup="true"
  11. android:icon="@drawable/ic_launcher"
  12. android:label="@string/app_name"
  13. android:theme="@style/AppTheme" >
  14. <activity
  15. android:name="com.broadcastreceivertest.MainActivity"
  16. android:label="@string/app_name" >
  17. <intent-filter>
  18. <action android:name="android.intent.action.MAIN" />
  19. <category android:name="android.intent.category.LAUNCHER" />
  20. </intent-filter>
  21. </activity>
  22. <!-- 注册3个广播接收器 -->
  23. <!-- 接收器1 -->
  24. <receiver android:name=".Receiver1" > <!-- 接收的Java文件 -->
  25. <intent-filter>
  26. <action android:name="android.intent.action.MY_BROADCAST" /> <!-- 广播器的标识(频段) -->
  27. <category android:name="android.intent.category.DEFAULT" />
  28. </intent-filter>
  29. </receiver>
  30. <!-- 接收器2 -->
  31. <receiver android:name=".Receiver2" >
  32. <intent-filter>
  33. <action android:name="android.intent.action.MY_BROADCAST" />
  34. <category android:name="android.intent.category.DEFAULT" />
  35. </intent-filter>
  36. </receiver>
  37. <!-- 接收器3 -->
  38. <receiver android:name=".Receiver3" >
  39. <intent-filter>
  40. <action android:name="android.intent.action.MY_BROADCAST" />
  41. <category android:name="android.intent.category.DEFAULT" />
  42. </intent-filter>
  43. </receiver>
  44. </application>
  45. </manifest>

之后,在主包com.broadcastreceivertest如下图新建3个Java文件Receiver1、2、3,皆继承android.content.BroadcastReceiver


其代码如下:

Receiver1.java

  1. package com.broadcastreceivertest;
  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.widget.Toast;
  6. public class Receiver1 extends BroadcastReceiver {
  7. @Override
  8. public void onReceive(Context context, Intent intent) {
  9. String msg = intent.getStringExtra("msg");
  10. Toast.makeText(context, "Receiver1得到信息:"+msg, Toast.LENGTH_SHORT).show();
  11. }
  12. }

Receiver2.java

  1. package com.broadcastreceivertest;
  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.widget.Toast;
  6. public class Receiver2 extends BroadcastReceiver {
  7. @Override
  8. public void onReceive(Context context, Intent intent) {
  9. String msg = intent.getStringExtra("msg");
  10. Toast.makeText(context, "Receiver2得到信息:"+msg, Toast.LENGTH_SHORT).show();
  11. }
  12. }

Receiver3.java

  1. package com.broadcastreceivertest;
  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.widget.Toast;
  6. public class Receiver3 extends BroadcastReceiver {
  7. @Override
  8. public void onReceive(Context context, Intent intent) {
  9. String msg = intent.getStringExtra("msg");
  10. Toast.makeText(context, "Receiver3得到信息:"+msg, Toast.LENGTH_SHORT).show();
  11. }
  12. }

可以看到这3个Java文件的结构都是类似的,重写onReceive方法中的context参数就是该Java文件在安卓系统的上下文,Toast等需求上下文来实现的东东,就用直接用此上下文即可,之后的intent,就是广播信息传递过来的intent,用intent.getStringExtra就能解释其中的key-value对。

在结果可以看出以上利用了Broadcast Receiver完成MainActivity.java对Receiver1、2、3.java的操控。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/472270
推荐阅读
相关标签
  

闽ICP备14008679号