不可移动的通知

时间:2012-11-17 02:53:38

标签: android notifications android-notification-bar

在我的应用中,有后台运行的服务。我想通知用户该服务正在运行。但我需要用户无法删除通知 - 通过按通知栏中的清除按钮或向外滑动

enter image description here

这意味着我需要在通知区域

上方显示我的通知

4 个答案:

答案 0 :(得分:58)

这是可能的,但实现方式取决于您开发的API级别。

对于低于11的API级别,您可以设置Notification.FLAG_NO_CLEAR。这可以这样实现:

// Create notification
Notification note = new Notification(R.drawable.your_icon, "Example notification", System.currentTimeMillis());

// Set notification message
note.setLatestEventInfo(context, "Some text", "Some more text", clickIntent);

// THIS LINE IS THE IMPORTANT ONE            
// This notification will not be cleared by swiping or by pressing "Clear all"
note.flags |= Notification.FLAG_NO_CLEAR;

对于高于11的API级别,或者使用Android Support Library时,可以像这样实现:

Notification noti = new Notification.Builder(mContext)
    .setContentTitle("Notification title")
    .setContentText("Notification content")
    .setSmallIcon(R.drawable.yourIcon)
    .setLargeIcon(R.drawable.yourBigIcon)
    .setOngoing(true) // Again, THIS is the important line
    .build();

答案 1 :(得分:11)

创建不可移动通知只需使用 setOngoing(true);

NotificationCompat.Builder mBuilder =
                         new NotificationCompat.Builder(this)

                        .setSmallIcon(R.drawable.ic_service_launcher)

                        .setContentTitle("My title")

                        .setOngoing(true)  

                        .setContentText("Small text with details");

答案 2 :(得分:3)

您正在寻找Notification.FLAG_NO_CLEARNotification.FLAG_ONGOING_EVENT之类的声音。

答案 3 :(得分:1)

创建不可移动通知只需使用setOngoing(true);

要创建可移动通知,只需使用setOngoing(false);