在Android中如何为广播接收器注册自定义Intent过滤器?


在进入示例之前,我们应该了解Android中的Intent过滤器是什么。Intent过滤器是IntentFilter类的实例。在使用隐式Intent时,Intent过滤器很有用,它不会在Java代码中处理,我们必须在AndroidManifest.xml中设置它。Android必须知道它正在启动什么样的Intent,因此Intent过滤器向Android提供关于Intent和动作的信息。

启动Intent之前,Android将测试action测试、category测试和data测试。本示例演示如何在Android中将自定义Intent过滤器用于广播接收器。

步骤1 - 在Android Studio中创建一个新项目,转到文件⇒新建项目,并填写所有必需的详细信息以创建一个新项目。

步骤2 - 将以下代码添加到res/layout/activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:gravity="center"
   android:orientation="vertical"
   tools:context=".MainActivity">
   <Button
      android:id="@+id/buton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="intent filter Register button" />
   <Button
      android:id="@+id/buton1"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="send Data" />
</LinearLayout>

在上面的代码中,我们有两个按钮,一个是注册Intent,另一个是向广播发送数据。

package com.example.andy.myapplication;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity {
   RadioButton radioButton;
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      final Button button = findViewById(R.id.buton);
      final Button send = findViewById(R.id.buton1);
      send.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            Intent intent=new Intent("com.example.andy.CUSTOM_INTENT");
            sendBroadcast(intent);
         }
      });
      button.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            registerReceiver(mMessageReceiver,new IntentFilter("com.example.andy.CUSTOM_INTENT"));
         }
      });
   }
   private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
      @Override
      public void onReceive(Context context, Intent intent) {
         // Extract data included in the Intent
         String message = intent.getAction();
         Toast.makeText(MainActivity.this,message,Toast.LENGTH_LONG).show();
      }
   };
   @Override
   protected void onPause() {
      super.onPause();
      unregisterReceiver(mMessageReceiver);
   }
}

单击按钮时,它将使用如下所示的自定义广播操作注册接收器:

registerReceiver(mMessageReceiver,new IntentFilter("com.example.andy.CUSTOM_INTENT"));

这是一个动态广播接收器,因此我们应该在onPause()中取消注册,如下所示:

unregisterReceiver(mMessageReceiver);

还有一个按钮用于发送广播。它将向注册的接收器发送操作和数据,如下所示:

Intent intent=new Intent("com.example.andy.CUSTOM_INTENT");
sendBroadcast(intent);

这是一个动态广播注册,因此我们不需要为广播接收器创建一个新的接收器文件,因此我们已在同一个Activity中声明广播接收器,如下所示:

private BroadcastReceiver mMessageReceiver = new BroadcastReceiver() {
   @Override
   public void onReceive(Context context, Intent intent) {
      // Extract data included in the Intent
      String message = intent.getAction();
      Toast.makeText(MainActivity.this,message,Toast.LENGTH_LONG).show();
   }
};

在上面的代码中,它将从Intent中获取数据作为操作并在Toast上打印。让我们尝试运行您的应用程序。我假设您已将您的实际Android移动设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的一个项目活动文件,然后单击工具栏中的运行图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕:

首先,我们通过单击“Intent过滤器注册按钮”注册接收器,然后单击发送数据以显示Toast,如下所示:

点击这里下载项目代码

更新于:2019年7月30日

2K+浏览量

启动您的职业生涯

完成课程获得认证

开始学习
广告