这是我用来创建通知的代码。
notificationBuilder.setOngoing(true)
.setSmallIcon(R.drawable.notifications_icon)
.setContentTitle("Upload")
.setContentText("image is being uploaded")
.setProgress(0, 0, true).setAutoCancel(true).build();
我能够得到通知但不能清除它。
答案 0 :(得分:2)
这是因为你写道:
setOngoing(true)
这意味着您希望通知为presist。 解决方案?删除此行(或将其设置为false
),它将被取消。