android– 在新应用安装上的BroadcastReceiver

android– 在新应用安装上的BroadcastReceiver,第1张

概述我想在安装新应用程序时收到通知.IntentFilternewAppFilter=newIntentFilter(Intent.ACTION_PACKAGE_ADDED);newAppFilter.addAction(Intent.ACTION_PACKAGE_CHANGED);newAppFilter.addAction(Intent.ACTION_PACKAGE_INSTALL);newAppFilter.addAction(Intent.ACTION_PACKA

我想在安装新应用程序时收到通知.

IntentFilter newAppFilter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);newAppFilter.addAction(Intent.ACTION_PACKAGE_CHANGED);newAppFilter.addAction(Intent.ACTION_PACKAGE_INSTALL);newAppFilter.addAction(Intent.ACTION_PACKAGE_REPLACED);getApplicationContext().registerReceiver(newAppReceiver, newAppFilter);public static broadcastReceiver newAppReceiver = new broadcastReceiver() {    public voID onReceive(Context context, Intent intent) {                 Log.e("broadcast","Received");       }};

但我无法得到任何日志.有人可以帮帮我吗?

解决方法:

尝试将数据方案添加到您的IntentFilter.

newAppFilter.addDataScheme("package");

参考:IntentFilter.addDataScheme()文档

If no schemes are included, then an
Intent will match only if it includes
no data.

总结

以上是内存溢出为你收集整理的android – 在新应用安装上的BroadcastReceiver全部内容,希望文章能够帮你解决android – 在新应用安装上的BroadcastReceiver所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1116520.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存