不要让用户清除android通知?

时间:2013-10-17 13:05:46

标签: android notifications

有一种方法可以让用户在没有按下按钮的情况下清除通知吗?我已经设置了setAutoCancel(false)并且没关系,但是有一个清除所有通知的按钮,我不希望它清除我的通知,因为它对用户很重要,他必须阅读它并选择一个动作。

NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
        .setSmallIcon(R.drawable.icon)
        .setContentTitle("Sync Failed")
        .setContentText("Lorem ipsum dolor sit amet")
        .setStyle(new NotificationCompat.BigTextStyle().bigText("Lorem ipsum dolor sit amet"))
        .addAction(R.drawable.change, "Change Pass", pChangePass)
        .addAction(R.drawable.remove, "Ignore", pIgnore)
        .setAutoCancel(false);


mNotificationManager.notify(accountUnique, builder.build());

2 个答案:

答案 0 :(得分:18)

.setOngoing(true) 

还需要添加!

答案 1 :(得分:1)

对于那次更改,你的最后三行代码是这样的..

final Notification notification = builder.build();
notification.flags = Notification.FLAG_NO_CLEAR;
mNotificationManager.notify(accountUnique, notification);