从https://material.io/guidelines/patterns/notifications.html#notifications-behavior开始,我确实能够通知用户,而无需显示通知通知.
我想在状态栏中显示一个闪烁的“喜欢”图标,而不会d出通知提示. (如果您观看“来自https://material.io/guidelines/patterns/notifications.html#notifications-behavior”部分下的第一个视频,则状态栏中会闪烁)
状态栏中的闪烁图标
但是,我不确定如何实现这一目标.每当我通知用户时,都会有一个通知d出窗口.
通知d出视窗
我的代码如下
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 vIEwinBoxStyle.setBigContentTitle(contentTitle);inBoxStyle.setSummaryText(summaryText);for (SpannableString notificationMessage : notificationMessages) { inBoxStyle.addline(notificationMessage);}mBuilder.setStyle(inBoxStyle);mnotificationmanager.notify(NOTIFICATION_ID, mBuilder.build());
我想知道,当我的应用程序处于前台时,如何避免出现通知d出窗口,而仅在状态栏中显示闪烁的图标.
解决方法:
.setPriority(notificationmanager.importANCE_LOW)
总结 以上是内存溢出为你收集整理的android-避免在应用程序处于前台时通知d出窗口全部内容,希望文章能够帮你解决android-避免在应用程序处于前台时通知d出窗口所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)