Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 android 上制作一个图标,单击该图标会清除所有通知,例如短信、电子邮件、未接来电等?我只想在我的主屏幕上有一个图标来清除所有通知。我会使用什么编码?
cancel(notificationID)您在哪里传递您创建的通知的通知 ID
cancel(notificationID)
否则,您可以通过 清除所有通知cancelAll()。
cancelAll()
*注意:*只能删除您的应用程序创建的通知。您不能删除由其他应用程序创建的通知。
您只能删除Notification您自己提出的。您不能删除Notification由另一个应用程序引发的。
Notification