标签: android notifications
我正在尝试使用远程视图创建持续通知。点击后出现问题,通知会被取消。
答案 0 :(得分:1)
那是因为你已经设置了
notification.flag = Notification.auto_cancel
或
new NotificationCompat.Builder(this) .setAutoCancel(true)
删除所有这些代码段,然后就可以了。