当前位置:   article > 正文

使用BroadCastReceiver发送和接受广播_用broadcastreceiver完成点击一个button,弹出toast通知

用broadcastreceiver完成点击一个button,弹出toast通知

使用BroadCastReceiver发送和接受广播

广播的概念:BroadcastReceiver是Android四大组件之一,没有可视化界面,用于不同组件和多线程之间的通信。
顾名思义,BroadcastReceiver 代表广播消息接收器。从代码实现角度来看,BroadcastReceiver非常类似于事件编程中的监听器。
不同点:普通事件监听器监听的事件源是程序中的对象;
BroadcastReceiver监听的事件源是Android应用中的其他组件。
Android四大组件:Activity,Service,BroadCast Recevicer,Content -provider。
案例运行结果:
在这里插入图片描述

  1. 第一步发送广播
package com.example.acer.guangbo;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {
//第一步发送广播
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Button button=findViewById(R.id.button2);   //获取广播按钮
        Button button1=findViewById(R.id.button3);
        //为按钮添加单击事件
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //发送一条广播,处理广播
                Intent intent=new Intent();
                intent.setAction("zuckerberg"); //为Intent添加动作zuckerberg
                sendBroadcast(intent);  //发送广播
            }
        });
        button1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent=new Intent();
                intent.setAction("mayun");
                sendBroadcast(intent);
            }
        });
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

2.第二步:创建广播接收器,用来接收广播

package com.example.acer.guangbo;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

//第二步创建广播接收器,用来接收广播
public class MyReceiver extends BroadcastReceiver {
//定义常量代表动作
    private static final String ACTION1="zuckerberg";   //动作1
    private static final String ACTION2="mayun";   //动作2
    @Override
    public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(ACTION1)){    //如果等于1 就对应1的广播,回复第一个广播
    Toast.makeText(context,"收到,扎克伯格的广播",Toast.LENGTH_LONG).show();  //content上下文对象
}
        if (intent.getAction().equals(ACTION2)){    //如果等于1 就对应1的广播,回复第二个广播
            Toast.makeText(context,"收到,马云的广播",Toast.LENGTH_LONG).show();  //content上下文对象
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  1. 第三步:注册广播接收器
  2. 第四步:配置intent过滤器
    enabled:判断能不能被实例化
    exported:能不能接收其他APP发送的广播
 </activity>
        <!--第三步:注册广播接收器-->
        <receiver android:name=".MyReceiver"
            android:enabled="true"  
            android:exported="true">
            <!--第四步:配置intent过滤器-->
            <intent-filter>
                <action android:name="zuckerberg"></action>
                <action android:name="mayun"></action>
            </intent-filter>
        </receiver>
    </application>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/472262
推荐阅读
相关标签
  

闽ICP备14008679号