我想检测用户何时安装或删除应用程序,但我没有找到BroadcastReceiver
这样做的。
在我的应用程序中,我通过 class 获取有关已安装应用程序的信息PackageManager
,但我不想定期扫描应用程序。有没有BroadcastReceiver
这样做的?或者任何ContentObserver
?是否可以收到应用程序已安装或删除的通知?
我想检测用户何时安装或删除应用程序,但我没有找到BroadcastReceiver
这样做的。
在我的应用程序中,我通过 class 获取有关已安装应用程序的信息PackageManager
,但我不想定期扫描应用程序。有没有BroadcastReceiver
这样做的?或者任何ContentObserver
?是否可以收到应用程序已安装或删除的通知?
您可以注册一个BroadcastReceiver
using Intent.ACTION_PACKAGE_ADDED
(以及 Intent.ACTION_PACKAGE_REMOVED
和/或Intent.ACTION_PACKAGE_CHANGED
如果需要)。例如,
void registerReceiver() {
IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
filter.addDataScheme("package_name");
}
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(Intent.ACTION_PACKAGE_ADDED)) {
Uri data = intent.getData();
String pkgName = data.getEncodedSchemeSpecificPart();
}
/* etc. */
}