gpt4 book ai didi

android - 当应用程序处于前台时避免通知弹出窗口

转载 作者:太空宇宙 更新时间:2023-11-03 13:09:35 27 4
gpt4 key购买 nike

来自 https://material.io/guidelines/patterns/notifications.html#notifications-behavior ,我真的可以通知用户,而无需显示通知。

我想在状态栏中显示一个闪烁的喜欢的图标,而不是弹出通知。 (如果您观看来自 https://material.io/guidelines/patterns/notifications.html#notifications-behavior 部分下的第一个视频,您可以看到状态栏中的闪烁)

状态栏中闪烁的图标

enter image description here

但是,我并不完全确定如何实现这一目标。每当我通知用户时,都会有一个通知弹出窗口。

通知弹出查看

enter image description here

我的代码如下

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context.getApplicationContext(), org.yccheok.notification.Utils.createNotificationChannel())
.setContentIntent(pendingIntent)
.setSmallIcon(R.drawable.ic_notification)
.setContentTitle(contentTitle)
.setTicker(ticker)
.setColorized(true)
.setColor(context.getResources().getColor(R.color.accent_material_light))
.setContentText(contentText);

mBuilder.setSound(Uri.parse(getStockAlertSound()));

mBuilder.setDefaults(Notification.DEFAULT_LIGHTS | Notification.DEFAULT_VIBRATE);

mBuilder.setAutoCancel(true);

// Need BIG view?
NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
// Sets a title for the Inbox style big view
inboxStyle.setBigContentTitle(contentTitle);
inboxStyle.setSummaryText(summaryText);
for (SpannableString notificationMessage : notificationMessages) {
inboxStyle.addLine(notificationMessage);
}
mBuilder.setStyle(inboxStyle);

mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());

我想知道,当我的应用程序处于前台时,如何避免通知弹出窗口,但只在状态栏中显示一个闪烁的图标。

最佳答案

.setPriority(NotificationManager.IMPORTANCE_LOW)

关于android - 当应用程序处于前台时避免通知弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48921611/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com