Comment définir l'icône de l'application en tant qu'icône de notification dans le tiroir de notification

Comme illustré dans la figure...
Je suis l'obtention de mon icône de notification(à gauche à la couleur rouge).
Mais j'ai besoin d'afficher l'icône de l'application, comme indiqué par la flèche noire

Comment définir l'icône de l'application en tant qu'icône de notification dans le tiroir de notification

    public void notify(View view){
    notification.setSmallIcon(R.drawable.ic_stat_name);
    notification.setTicker("Welcome to ****");
    notification.setWhen(System.currentTimeMillis());
    notification.setContentTitle("abcd");
    notification.setContentText("abcd");


    Intent intent = new Intent(this, home.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    notification.setContentIntent(pendingIntent);


    NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    nm.notify(uniqueID, notification.build());
}

source d'informationauteur Aditya Suresh