我们在 android 中实现了一个聊天应用程序,当用户不想收到任何通知时,
he will turn off the notification in settings of the app ,
但是如何在android编程中获取“通知状态”(开/关),以防止向那些关闭的用户发送通知,以节省向用户发送通知的费用....
我们在 android 中实现了一个聊天应用程序,当用户不想收到任何通知时,
he will turn off the notification in settings of the app ,
但是如何在android编程中获取“通知状态”(开/关),以防止向那些关闭的用户发送通知,以节省向用户发送通知的费用....
在我搜索了很多之后......我在这里找到了获取我们应用程序通知状态的解决方案:使用
NotificationManagerCompat.from(context).areNotificationsEnabled()
使用支持库中的 NotificationManagerCompat.from(Context).areNotificationsEnabled() 检查通知是否在 API 19+ 上被阻止。API 19 以下的版本将返回 true(启用通知)。
有关更多详细信息,请访问此链接:get NotificationStatus based on version