在我的应用中,有后台运行的服务。我想通知用户该服务正在运行。但我需要用户无法删除通知 - 通过按通知栏中的清除按钮或向外滑动
这意味着我需要在通知区域
上方显示我的通知答案 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)
答案 3 :(得分:1)
创建不可移动通知只需使用setOngoing(true);
要创建可移动通知,只需使用setOngoing(false);