NotificationCompat.DecoratedMediaCustomViewStyle

class NotificationCompat.DecoratedMediaCustomViewStyle : NotificationCompat.MediaStyle


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(androidx.core.app.NotificationCompat.Style) like so:

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

If you are using this style, consider using the corresponding styles like TextAppearance_Compat_Notification_Media or TextAppearance_Compat_Notification_Title_Media in your custom views in order to get the correct styling on each platform version.

Summary

Public constructors

Inherited functions

From androidx.media.app.NotificationCompat.MediaStyle
java-static MediaSessionCompat.Token!
getMediaSession(notification: Notification!)

Extracts a MediaSessionCompat.Token from the extra values in the MediaStylenotification.

NotificationCompat.MediaStyle!

Sets the pending intent to be sent when the cancel button is pressed.

NotificationCompat.MediaStyle!

Attaches a MediaSessionCompat.Token to this Notification to provide additional playback information and control to the SystemUI.

NotificationCompat.MediaStyle
@RequiresPermission(value = "android.permission.MEDIA_CONTENT_CONTROL")
setRemotePlaybackInfo(
    deviceName: CharSequence,
    iconResource: @DrawableRes Int,
    chipIntent: PendingIntent?
)

For media notifications associated with playback on a remote device, provide device information that will replace the default values for the output switcher chip on the media control, as well as an intent to use when the output switcher chip is tapped, on devices where this is supported.

NotificationCompat.MediaStyle!

Requests up to 3 actions (by index in the order of addition) to be shown in the compact notification view.

NotificationCompat.MediaStyle!

Sets whether a cancel button at the top right should be shown in the notification on platforms before Lollipop.

From androidx.core.app.NotificationCompat.Style
Notification?

If this Style object has been set on a notification builder, this method will build that notification and return it.

Unit

Link this rich notification style with a notification builder.

Public constructors

DecoratedMediaCustomViewStyle

Added in 1.1.0
DecoratedMediaCustomViewStyle()