Android通知刷卡删除禁用

时间:2014-02-15 08:42:53

标签: android notifications

是否可以从android中的通知列表中禁用Android通知的滑动删除功能。请帮帮我。

提前致谢。

3 个答案:

答案 0 :(得分:24)

试用此代码

builder.setOngoing(true); // Cant cancel your notification (except notificationManager.cancel(); )

Notifcation Builder中的上述代码。

public void DisplayNotification() {

// Use NotificationCompat.Builder to set up our notification.
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);

//icon appears in device notification bar and right hand corner of notification
builder.setSmallIcon(R.drawable.ic_stat_notification);

// This intent is fired when notification is clicked
Intent tapIntent = new Intent(CurrentActivity.this, SecondActivity.class);

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, tapIntent, 0);

// Set the intent that will fire when the user taps the notification.
builder.setContentIntent(pendingIntent);

builder.setOngoing(true); // Cant cancel your notification (except NotificationManger.cancel(); )

// Content title, which appears in large type at the top of the notification
builder.setContentTitle("Notifications Title");

// Content text, which appears in smaller text below the title
builder.setContentText("Your notification content here.");

NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

// Will display the notification in the notification bar
notificationManager.notify(NOTIFICATION_ID, builder.build());
}

取消通知

public void cancelNotification() {
        mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        mNotificationManager.cancel(NOTIFICATION_ID); // Notification ID to cancel
    }

快乐编码:)

答案 1 :(得分:16)

您可以将通知标记为“正在进行”的通知。

- > Notification.Builder setOngoing

答案 2 :(得分:1)

notificationBuilder.setOngoing(true);

不允许通过滑动取消通知。