MediaFrontendContext

class MediaFrontendContext(    val frontendContext: FrontendContext,     val panelStack: LiveData<out List<MediaTaskPanel>>,     val mediaConfiguration: MediaConfiguration,     val mediaService: MediaServiceApi,     val panels: MediaFrontendContext.Panels,     val errorCallback: ErrorCallback)

Entry point for Media related panels to communicate with their frontend and the rest of the system. Should be created by the Frontend.

All available static configuration values are accessible through frontendContext, in FrontendContext.staticConfigurationProvider.

Examples: All example apps can be found in the Android Studio project inside the TomTom Digital Cockpit SDK.

  • How to set up a custom mini player using static configuration: examples/media/miniplayer/

Parameters

frontendContext

Base FrontendContext. Used to access IVI services.

panelStack

Current stack of panels for the Frontend. Usable to determine which panels are open. The Frontend is responsible for observing this variable, to ensure panels always have access to an updated list.

mediaConfiguration

The configuration of the Frontend. This includes the mapping of SourceId to panel factories, and which MediaControls to use.

mediaService

Reference to the MediaServiceApi based on the MediaService IVI service interface, for ease of access.

panels

Interface to easily open sub-panels.

errorCallback

Callback container to report media browsing errors to the frontend; necessary since only the frontend can best decide on how to respond to error conditions in different situations.

Constructors

Link copied to clipboard
fun MediaFrontendContext(    frontendContext: FrontendContext,     panelStack: LiveData<out List<MediaTaskPanel>>,     mediaConfiguration: MediaConfiguration,     mediaService: MediaServiceApi,     panels: MediaFrontendContext.Panels,     errorCallback: ErrorCallback)

Types

Link copied to clipboard
interface Panels

Interface to open Frontend sub-panels.

Properties

Link copied to clipboard
val errorCallback: ErrorCallback
Link copied to clipboard
val frontendContext: FrontendContext
Link copied to clipboard
val mediaConfiguration: MediaConfiguration
Link copied to clipboard
val mediaService: MediaServiceApi
Link copied to clipboard
val panels: MediaFrontendContext.Panels
Link copied to clipboard
val panelStack: LiveData<out List<MediaTaskPanel>>