我希望几秒钟后通知不会消失。 所以我创建了这样的通知:
NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
builder.setSmallIcon(R.drawable.cast_ic_notification_small_icon)
.setDefaults(Notification.FLAG_ONGOING_EVENT)
.setPriority(Notification.PRIORITY_HIGH)
.setContentTitle(notificationDetails.getSubject())
.setContentText(notificationDetails.getMessage())
.setColor(context.getResources().getColor(R.color.colorPrimary))
.setOngoing(true);
并设置FLAG_ONGOING_EVENT和方法setOngoing(true)。
但几秒钟后通知继续消失。 我希望通知只有在用户点击时才会消失。 谢谢。
答案 0 :(得分:2)
抬头通知的持续时间无法更改它设置为操作系统级别取决于操作系统提供的时间。
答案 1 :(得分:2)
实际上可以使抬头通知持续存在。诀窍是使用setFullScreenIntent
。如果您不希望通知具有全屏版本,则可以使用不会实际启动任何活动的虚拟意图,如下所示:
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, new Intent(), 0);
notificationBuilder.setFullScreenIntent(pendingIntent, true);
这是一个黑客,但这种行为是有道理的。如果某个应用尝试显示全屏通知,那么它必须是重要事件,如闹钟或电话。如果手机决定不显示全屏通知,那么在用户采取行动之前,它应该仍然显示持久性。
这适用于我测试过的手机,但行为没有记录,因此无法保证。
答案 2 :(得分:2)
此问题已在 Honor 和华为设备上观察到。
您可以尝试通过使用 setFullScreenIntent
并向 AndroidManifest 添加权限来修复它。
代码:
PendingIntent pIntent = PendingIntent.getActivity(this, 0, new Intent(), PendingIntent.FLAG_UPDATE_CURRENT);
notificationBuilder.setFullScreenIntent(pIntent, true);
AndroidManifest.xml:
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
答案 3 :(得分:1)
持续时间无法更改。否则它会干扰队列中显示的其他抬头通知。
答案 4 :(得分:0)
您可以执行以下操作:
notificationBuilder.setFullScreenIntent(pendingIntent, true)
您还必须使用这些:
val tempChannel = NotificationChannel(tempChannelId, "temp channel",
NotificationManager.IMPORTANCE_HIGH) // Setting to high is important
tempChannel.enableVibration(true)
...
notificationBuilder.setAutoCancel(false)
notificationBuilder.setPriority(NotificationCompat.PRIORITY_MAX) // PRIORITY_HIGH works too
notificationBuilder.setVibrate(LongArray(0)) // For older devices we need to add vibration or sound for the Heads-Up notification. This line will not make it vibrate, you can use another pattern, or default, if you want it to vibrate
notificationBuilder.setFullScreenIntent(pendingIntent, true)
重要提示:
在大多数设备上,这将在屏幕顶部显示通知,将所有内容重叠并留在屏幕上。
但是在某些设备上,它将立即启动通知中的待定意图。 (例如华为)
要解决这个问题,我们可以对fullScreenIntent使用一个虚拟的prefixIntent,以相同的方式显示通知,只是不使用notificationBuilder.setFullScreenIntent(pendingIntent, true);
。这将作为后备,因此通知将出现,但会自动缩小为大约5秒钟后,状态栏就会显示出来。
val servicePendingIntent = PendingIntent.getService(context, 0, Intent(context, FullScreenIntentService::class.java), 0)
val mainActivityPendingIntent = PendingIntent.getActivity(context, 0, Intent(context, MainActivity::class.java), PendingIntent.FLAG_ONE_SHOT)
...
notificationBuilder.setContentIntent(mainActivityPendingIntent)
notificationBuilder.setFullScreenIntent(servicePendingIntent, true)
位置:
class FullScreenIntentService : Service() {
override fun onCreate() {
super.onCreate()
showNotificationHereTheSameWayJustWithoutSetFullScreenIntent()
stopSelf()
}
override fun onBind(intent: Intent?): IBinder? = null
}
并且不要忘记在AndroidManifest中注册该服务。
答案 5 :(得分:0)
&
要使抬头通知保持不变,您需要添加全屏意图