lopez.mikhael
lopez.mikhael

Reputation: 10071

How to implement Android Notification with overview like WhatsApp?

I want to implement a notification with overview when the device is in use like WhatsApp:

enter image description here

I know the basic implementation this way:

PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, 
    new Intent(this, MainActivity.class), 0);

Notification notification = new Notification.Builder(this)
                .setContentTitle("Title")
                .setContentText("Message")
                .setSmallIcon(R.drawable.ic_notif)
                .setContentIntent(mPendingIntent)
                .build();

NotificationManager notificationManager = 
    (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(1, notification);

But in that case, I don't have the overview. I only have a small icon in the notification bar:

Simple Notification

Upvotes: 0

Views: 1222

Answers (1)

lopez.mikhael
lopez.mikhael

Reputation: 10071

Finaly, it's just about a Priority level:

notificationBuilder.setPriority(Notification.PRIORITY_HIGH);

Upvotes: 1

Related Questions