如何获取可以在android中发送通知的已安装app的列表?

时间:2017-07-07 03:56:20

标签: android push-notification notifications

我正在开发一个应用程序,我必须获取在Android中发送通知的应用程序列表。我搜索了很多,但没有找到任何解决方案。所以,请告诉我如何获取发送通知的应用列表。

1 个答案:

答案 0 :(得分:0)

要获取应用列表,您可以这样做

Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent .addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> appList = context.getPackageManager().queryIntentActivities( intent , 0);

然后检查是否有通知您可以使用此功能但我不确定如何将其用于应用列表。

NotificationManagerCompat.from(context).areNotificationsEnabled();