Clicking Android Notification Actions does not close Notification drawer

后端 未结 5 1734
谎友^
谎友^ 2020-12-13 08:23

I am adding a Notification to System bar using the NotificationCompat library. This Notification has two action buttons. Also, AutoCancel() propert

5条回答
  •  天命终不由人
    2020-12-13 09:05

    If your action is in the form of a broadcast or a service but you intend for the notification drawer to collapse, you should broadcast android.intent.action.CLOSE_SYSTEM_DIALOGS from your onReceive. This will manually close the drawer.

提交回复
热议问题