broadcastreceiver 静态注册无法正常运行

广播有两种注册方式,一种是静态的,一种是动态的。
这里的话,静态的在android高版本的时候,需要添加一段话,就是下面的第四句话。
Intent intent=new Intent();
intent.setAction("com.example.action.CRAZY");
intent.putExtra("msg","简单消息");
intent.setComponent(new ComponentName("com.example.myapplication1","com.example.myapplication1.MyReceiver"));

原文是https://blog.csdn.net/qq_39326574/article/details/96310112

你可能感兴趣的:(Android)