欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android studio广播

程序员文章站 2022-06-26 15:10:41
简单使用步骤:发送一条广播//发送一条广播//动作 Intent intent=new Intent("sunweihao"); //发送广播 sendBroadcast(intent);接收广播:public class MyBroadcastReceiver extends BroadcastReceiver { private static final String ACTI...

简单使用

步骤:

  1. 发送一条广播
//发送一条广播
//动作
                Intent intent=new Intent("sunweihao");
                //发送广播
                sendBroadcast(intent);
  1. 接收广播:
public class MyBroadcastReceiver extends BroadcastReceiver {
    private static final String  ACTION1="sunweihao";
    private static final String  ACTION2="sunweihao2";
    @Override
    public void onReceive(Context context, Intent intent) {
    //根据广播来进行逻辑处理
        if (ACTION1==intent.getAction()) {
            Toast.makeText(context, "孙伟豪", Toast.LENGTH_SHORT).show();
        }else if (ACTION2==intent.getAction()) {
            Toast.makeText(context, "孙伟豪2", Toast.LENGTH_SHORT).show();
        }

    }
}
  1. 注册广播
<!--注册广播
        表示可实例化
        表示可以被其他应用接收
        -->
        <receiver android:name=".MyBroadcastReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="sunweihao"/>
                <action android:name="sunweihao2"/>
            </intent-filter>

        </receiver>

本文地址:https://blog.csdn.net/sunweihao2019/article/details/108849224