CarAppExtender  |  API reference  |  Android Developers (original) (raw)

Stay organized with collections Save and categorize content based on your preferences.


public final class CarAppExtender implements NotificationCompat.Extender


Helper class to add car app extensions to notifications.

By default, notifications in a car screen have the properties provided by [NotificationCompat.Builder](/reference/androidx/core/app/NotificationCompat.Builder). This helper class provides methods to override those properties for the car screen. However, notifications only show up in the car screen if it is extended with [CarAppExtender](/reference/androidx/car/app/notification/CarAppExtender), even if the extender does not override any properties. To create a notification with car extensions:

  1. Create a [NotificationCompat.Builder](/reference/androidx/core/app/NotificationCompat.Builder), setting any desired properties.
  2. Create a [CarAppExtender.Builder](/reference/androidx/car/app/notification/CarAppExtender.Builder).
  3. Set car-specific properties using the set methods of .
  4. Create a [CarAppExtender](/reference/androidx/car/app/notification/CarAppExtender) by calling [build](/reference/androidx/car/app/notification/CarAppExtender.Builder#build%28%29).
  5. Call [extend](/reference/androidx/core/app/NotificationCompat.Builder#extend%28androidx.core.app.NotificationCompat.Extender%29) to apply the extensions to a notification.
  6. Post the notification to the notification system with the CarNotificationManager.notify(...) methods. Do not use the NotificationManager.notify(...), nor the NotificationManagerCompat.notify(...)} methods.

Notification notification = new NotificationCompat.Builder(context) ... .extend(new CarAppExtender.Builder() .set*(...) .build()) .build();

Car extensions can be accessed on an existing notification by using the CarAppExtender(Notification) constructor, and then using the get methods to access values.

The car screen UI is affected by the notification channel importance (Android O and above) or notification priority (below Android O) in the following ways:

Calling [setImportance](/reference/androidx/car/app/notification/CarAppExtender.Builder#setImportance%28int%29) will override the importance for the notification in the car screen.

Calling NotificationCompat.Builder#setOnlyAlertOnce(true) will alert a high-priority notification only once in the HUN. Updating the same notification will not trigger another HUN event.

Navigation

For a navigation app's turn-by-turn (TBT) notifications, which update the same notification frequently with navigation information, the notification UI has a slightly different behavior. The app can post a TBT notification by calling NotificationCompat.Builder#setOngoing(true) and NotificationCompat.Builder#setCategory(NotificationCompat.CATEGORY_NAVIGATION).

TBT notifications behave the same as regular notifications with the following exceptions:

In addition to that, the information in the navigation notification will be displayed in the rail widget at the bottom of the screen when the app is in the background.

Note that frequent HUNs distract the driver. The recommended practice is to update the TBT notification regularly on distance changes, which updates the rail widget, but call NotificationCompat.Builder#setOnlyAlertOnce(true) unless there is a significant navigation turn event.

Summary

Public constructors

Public methods

getColor

public @Nullable CarColor getColor()

Returns the background color of the notification or null if a default color is to be used.

getImportance

public int getImportance()

Returns the importance of the notification in the car screen.

getLargeIcon

public @Nullable Bitmap getLargeIcon()

Returns the large icon bitmap to display in the notification or null if not set.