第一行代码5.3节,发送自定义广播在安卓8的时候无法接收自定义广播的解决方法。

本博文参考https://blog.csdn.net/kongqwesd12/article/details/78998151

感谢!如有侵权,请通知我删除,谢谢。

目前在自学,参考书籍:Android第一行代码第二版。

在看到5.3节的时候,由于安卓版本的不同,遇到了自定义广播无法接收的问题。经过查找资料,发现是安卓8对一些东西进行了改变。我测试的机器是安卓8.1的,所以用了以下的方法。

原代码。

Intent intent = new Intent("com.example.weiru.broadcasttest.MY_BROADCAST") ;
sendBroadcast(intent);

修改后的代码

Intent intent = new Intent("com.example.weiru.broadcasttest.MY_BROADCAST") ;
intent.setComponent(new ComponentName("com.example.weiru.mybroadcastreceiver",
         "com.example.weiru.mybroadcastreceiver.My")) ;
sendBroadcast(intent);

 

你可能感兴趣的:(Android)