Most visited

Recently visited

Added in API level 24

Notification.DecoratedMediaCustomViewStyle

public static class Notification.DecoratedMediaCustomViewStyle
extends Notification.MediaStyle

java.lang.Object
   ↳ android.app.Notification.Style
     ↳ android.app.Notification.MediaStyle
       ↳ android.app.Notification.DecoratedMediaCustomViewStyle


Notification style for media custom views that are decorated by the system

Instead of providing a media notification that is completely custom, a developer can set this style and still obtain system decorations like the notification header with the expand affordance and actions.

Use setCustomContentView(RemoteViews), setCustomBigContentView(RemoteViews) and setCustomHeadsUpContentView(RemoteViews) to set the corresponding custom views to display. To use this style with your Notification, feed it to setStyle(android.app.Notification.Style) like so:

 Notification noti = new Notification.Builder()
     .setSmallIcon(R.drawable.ic_stat_player)
     .setLargeIcon(albumArtBitmap))
     .setCustomContentView(contentView);
     .setStyle(new Notification.DecoratedMediaCustomViewStyle()
          .setMediaSession(mySession))
     .build();
 

See also:

Summary

Inherited fields

From class android.app.Notification.Style

Public constructors

Notification.DecoratedMediaCustomViewStyle()

Inherited methods

From class android.app.Notification.MediaStyle
From class android.app.Notification.Style
From class java.lang.Object

Public constructors

Notification.DecoratedMediaCustomViewStyle

Added in API level 24
Notification.DecoratedMediaCustomViewStyle ()

Hooray!