在使用notificationBuilder创建的Android通知的通知托盘中没有取消选项

时间:2015-08-29 11:50:49

标签: android push-notification

这是我用来创建通知的代码。

    notificationBuilder.setOngoing(true)
                    .setSmallIcon(R.drawable.notifications_icon)
                    .setContentTitle("Upload")
                    .setContentText("image is being uploaded")
                    .setProgress(0, 0, true).setAutoCancel(true).build();

我能够得到通知但不能清除它。

1 个答案:

答案 0 :(得分:2)

这是因为你写道:

setOngoing(true)

这意味着您希望通知为presist。 解决方案?删除此行(或将其设置为false),它将被取消。