Setting small icon in Notification above lollipop version
问题 I have created heads up notification. As like below, NotificationCompat.Builder notification = new NotificationCompat.Builder(this, channelId) .setContentTitle("Message") .setContentText("Recieved Successfully") .setContentIntent(pendingIntent) //.setColor(ContextCompat.getColor(this, R.color.green)) .setSmallIcon(R.drawable.notification_icon) .setDefaults(Notification.DEFAULT_ALL) .setContentIntent(pendingIntent) .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))