删除android通知“摘要文本”字段

时间:2017-09-25 07:08:05

标签: java android push-notification

enter image description here我正在实施Android 7.0通知。

但问题是“摘要文字”字段。 当我展开分组通知框时,即使没有内容,“摘要文本”字段仍然存在。

所以我想删除这个字段。 我该怎么做才能删除这个字段。以下是我的通知代码。

感谢。

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);

0 个答案:

没有答案