原创 Android之本地广播的使用

2021-12-24 14:38 2208 32 32 分类: 软件与OS 文集: android studio

前面我们发送和接收的广播全部属于系统全局广播,即发出的广播可以被其他任何应用程序接收到,并且我们也可以接收来自于其他任何应用程序的广播。这样就很容易会引起安全性的问题,比如说我们发送的一些携带关键性数据的广播有可能被其他的应用程序截获或者其他的程序不停地向我们的广播接收器里发送各种垃圾广播。

为了能够简单地解决广播的安全性问题,Android 引入了一套本地广播机制,使用这个机制发出的广播只能够在应用程序的内部进行传递,并且广播接收器也只能接收来自本应用程序发出的广播,这样所有的安全性问题就都不存在了。另外,发送本地广播比起发送系统全局广播效率更高。

本地广播的用法并不复杂,主要就是使用了一个LocalBroadcastManager 来对广播进行管理,并提供了发送广播和注册广播接收器的方法。下面我们就通过具体的实例来演示它的用法。

新建一个CustomReceive类继承自BroadcastReceiver,并重写onReceive()方法,代码如下:

  1. package com.rfstar.localbroadcasttest;
  2. import android.content.BroadcastReceiver;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.os.Bundle;
  6. import android.widget.Toast;
  7. public class CustomReceiver extends BroadcastReceiver {
  8. @Override
  9. public void onReceive(Context context, Intent intent) {
  10. //获取传递的参数
  11. Bundle bundle=intent.getBundleExtra("data");
  12. String name=bundle.getString("name");
  13. String field=bundle.getString("field");
  14. Toast.makeText(context,"在broadcast应用中接收到广播:"+"接收的广播数据为,名称:"+name+",领域:"+field,
  15. Toast.LENGTH_LONG).show();
  16. }
  17. }

MainActivity代码如下:

  1. package com.rfstar.localbroadcasttest;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import androidx.localbroadcastmanager.content.LocalBroadcastManager;
  4. import android.content.Intent;
  5. import android.content.IntentFilter;
  6. import android.os.Bundle;
  7. import android.view.View;
  8. import android.widget.Button;
  9. public class MainActivity extends AppCompatActivity {
  10. private LocalBroadcastManager localBroadcastManager;
  11. private CustomReceiver customReceiver;
  12. @Override
  13. protected void onCreate(Bundle savedInstanceState) {
  14. super.onCreate(savedInstanceState);
  15. setContentView(R.layout.activity_main);
  16. localBroadcastManager=LocalBroadcastManager.getInstance(this);
  17. Button send=(Button)findViewById(R.id.send);
  18. send.setOnClickListener(new View.OnClickListener() {
  19. @Override
  20. public void onClick(View v) {
  21. //建立一个意图,action为com.rfstar.action.NORMAL_BROADCAST
  22. Intent intent=new Intent("com.rfstar.action.NORMAL_BROADCAST");
  23. Bundle bundle=new Bundle();
  24. bundle.putString("name","大鸟科创空间");
  25. bundle.putString("field","科技");
  26. //向意图中加入数据
  27. intent.putExtra("data",bundle);
  28. //发送广播,普通广播
  29. localBroadcastManager.sendBroadcast(intent);
  30. }
  31. });
  32. IntentFilter intentFilter=new IntentFilter();
  33. intentFilter.addAction("com.rfstar.action.NORMAL_BROADCAST");
  34. customReceiver=new CustomReceiver();
  35. localBroadcastManager.registerReceiver(customReceiver,intentFilter);
  36. }
  37. @Override
  38. protected void onDestroy()
  39. {
  40. super.onDestroy();
  41. localBroadcastManager.unregisterReceiver(customReceiver);
  42. }
  43. }

MainActivity对应的布局文件代码如下,创建一个发送广播的Button按钮。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".MainActivity">
  7. <Button
  8. android:id="@+id/send"
  9. android:layout_width="wrap_content"
  10. android:layout_height="wrap_content"
  11. android:text="发送广播" />
  12. </LinearLayout>

这部分代码和我们前面所学的动态注册广播接收者以及发送广播的代码是一样的。只不过现在首先是通过 LocalBroadcastManager 的静态方法 getInstance()得到了LocalBroadcast-Manager 的一个实例,然后用LocalBroadcastManager 对象调用registerReceiver()方法注册广播接收者,再用 LocalBroadcastManager 对象调用 sendBroadcast()方法发送广播。

本地广播是无法通过静态注册的方式来接收的。其实这也完全可以理解,因为静态注册主要就是为了让程序在未启动的情况下也能收到广播,而发送本地广播时,我们的程序肯定是已经启动了,完全不需要使用静态注册的功能,所以也应将 AndroidManifest.xml文件中的静态注册接收者部分删除。

重新运行程序并点击按钮,效果如图所示。此时其他的应用程序是接收不了这条广播的。


android studio工具及手机模拟器以及更多工程源代码下载请前往微信公众号:大鸟科创空间,回复:android studio即可获取。


作者: 大鸟科创空间, 来源:面包板社区

链接: https://mbb.eet-china.com/blog/uid-me-3949041.html

版权声明:本文为博主原创,未经本人允许,禁止转载!

文章评论0条评论)

登录后参与讨论
我要评论
0
32
关闭 站长推荐上一条 /2 下一条