从https://material.io/guidelines/patterns/notifications.html#notifications-behavior开始,我真的能够通知用户,而不会显示通知。
我想在状态栏中显示一个闪烁的喜欢图标,没有弹出通知查看。 (如果您在https://material.io/guidelines/patterns/notifications.html#notifications-behavior部分下观看第一个视频,则可以看到状态栏中的闪烁)
然而,我并不完全确定如何实现这一目标。每当我通知用户时,都会有一个通知弹出窗口。
我的代码如下
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());
我想知道,当我的应用程序处于前台时,如何避免通知弹出窗口,但只在状态栏中显示闪烁的图标。
答案 0 :(得分:4)
.setPriority(NotificationManager.IMPORTANCE_LOW)