Remove all notifications from notification bar

前端 未结 2 1030
后悔当初
后悔当初 2021-02-15 12:47

I want to remove all cancelable notifications from status bar. I know how to remove my app notifications I have seen this post before, butI want to remove other apps notificatio

2条回答
  •  没有蜡笔的小新
    2021-02-15 12:53

    To remove all notifications:

    Kotlin

    val NM = getSystemService(AppCompatActivity.NOTIFICATION_SERVICE) as NotificationManager
    NM.cancelAll()
    

    Java

    NotificationManager NM = getSystemService(AppCompatActivity.NOTIFICATION_SERVICE) 
    NM.cancelAll()
    

提交回复
热议问题