[ Web Proxy ]
URL:
Viewing: https://developer.android.com/reference/android/app/Notification.DecoratedMediaCustomViewStyle [Back]  [Original]

Notification.DecoratedMediaCustomViewStyle  |  API reference  |  Android Developers Skip to main content
Essentials Design & Plan Develop Google Play Blog
Search:
Android Studio
Android Developers [Android Developers]
Stay organized with collections Save and categorize content based on your preferences.

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 android.app.Notification.Builder.setCustomContentView(RemoteViews), android.app.Notification.Builder.setCustomBigContentView(RemoteViews) and android.app.Notification.Builder.setCustomHeadsUpContentView(RemoteViews) to set the corresponding custom views to display.

Contrary to MediaStyle a developer has to opt-in to the colorizing of the notification by using Notification.Builder.setColorized(boolean).

To use this style with your Notification, feed it to Notification.Builder.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

Public constructors

DecoratedMediaCustomViewStyle()

Inherited methods

Public constructors

DecoratedMediaCustomViewStyle

Added in API level 24
public DecoratedMediaCustomViewStyle ()

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2026-08-03 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2026-08-03 UTC."],[],[]]

Web Proxy Viewer  |  New URL  |  Original Page