Ícone grande de notificação do Android, existe uma maneira de remover o ícone menor no canto inferior direito?

Eu tenho uma notificação que exibe um ícone grande.

Existe alguma maneira de remover o ícone menor do favo de mel e dos dispositivos acima dessa exibição?

Obviamente, ainda mantendo o pequeno ícone da barra de status superior

   NotificationCompat.Builder builder = new NotificationCompat.Builder(context)


            // Set required fields, including the small icon, the
            // notification title, and text.
            .setSmallIcon(R.drawable.ic_notify_status_new)
            .setContentTitle(title)
            .setContentText(text)


            // All fields below this line are optional.

            // Use a default priority (recognized on devices running Android
      ,      // 4.1 or later)
            .setPriority(NotificationCompat.PRIORITY_DEFAULT)

            // Provide a large icon, shown with the notification in the
            // notification drawer on devices running Android 3.0 or later.
            .setLargeIcon(picture)

            .setContentIntent(
                    PendingIntent.getActivity(
                            context,
                            0,
                            notiIntent,
                            PendingIntent.FLAG_UPDATE_CURRENT)
            );


    builder = getNotiSettings(builder);
    notify(context, builder.build());

questionAnswers(3)

yourAnswerToTheQuestion