但问题是“摘要文字”字段。 当我展开分组通知框时,即使没有内容,“摘要文本”字段仍然存在。
所以我想删除这个字段。 我该怎么做才能删除这个字段。以下是我的通知代码。
感谢。
NotificationCompat.BigTextStyle bigTextStyle = new
NotificationCompat.BigTextStyle();
bigTextStyle.setBigContentTitle(topTitle);
bigTextStyle.bigText(title);
NotificationCompat.Builder notificationBuilder = new
NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_noti)
.setLargeIcon(BitmapFactory.decodeResource(getResources(), resIconID))
.setStyle(bigTextStyle)
.setAutoCancel(true)
.setColor(getResources().getColor(R.color.lightBlue))
.setDeleteIntent(pendingDelIntent)
.setContentIntent(pendingIntent);
NotificationManager notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(notiFlag, notificationBuilder.build());
PropertyManager.getInstance(this).setNotiCount(type, notiCount);