Android 如何在多个通知的状态栏中显示单个通知图标

Android 如何在多个通知的状态栏中显示单个通知图标,android,android-notifications,Android,Android Notifications,我目前正在使用以下内容显示通知: NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this) .setSound(sound) .setSmallIcon(R.drawable.h) .setLargeIcon(largeIcon) .setContentTitle(title) .setFullScreenIntent(pendingIntent,true)

我目前正在使用以下内容显示通知:

NotificationCompat.Builder noBuilder = new NotificationCompat.Builder(this)
    .setSound(sound)
    .setSmallIcon(R.drawable.h) 
    .setLargeIcon(largeIcon)
    .setContentTitle(title)
    .setFullScreenIntent(pendingIntent,true)
    .setContentText(message)
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(message))
    .setAutoCancel(true)
    .setPriority(Notification.PRIORITY_HIGH)
    .setContentIntent(pendingIntent);
使用键在组中显示通知

final static String GROUP_KEY_EMAILS = "group_key_emails";

// Build the notification, setting the group appropriately
Notification notif = new NotificationCompat.Builder(mContext)
         .setContentTitle("New mail from " + sender1)
         .setContentText(subject1)
         .setSmallIcon(R.drawable.new_mail)
         .setGroup(GROUP_KEY_EMAILS)
         .build();

// Issue the notification
NotificationManagerCompat notificationManager =
        NotificationManagerCompat.from(this);
notificationManager.notify(notificationId1, notif);
设置以设置一组通知的摘要