Expand Minimize Picture-in-picture Power Device Status Voice Recognition Skip Back Skip Forward Minus Plus Play Search
Internet Explorer alert
This browser is not recommended for use with smartdevicelink.com, and may not function properly. Upgrade to a different browser to guarantee support of all features.
close alert
To Top Created with Sketch. To Top
To Bottom Created with Sketch. To Bottom
JavaEE Guides
Adaptive Interface Capabilities

Adaptive Interface Capabilities

Since each car manufacturer has different user interface style guidelines, the number of lines of text, soft and hard buttons, and images supported will vary between different types of head units. The system will send information to your app about its capabilities for various user interface elements. You should use this information to create the user interface of your SDL app.

You can access these properties on the sdlManager.getSystemCapabilityManager() instance.

System Capability Manager Properties

Parameters Description RPC Version
SystemCapabilityType.DISPLAYS Specifies display related information. The primary display will be the first element within the array. Windows within that display are different places that the app could be displayed (such as the main app window and various widget windows). RPC v6.0+
SystemCapabilityType.HMI_ZONE Specifies HMI Zones in the vehicle. There may be a HMI available for back seat passengers as well as front seat passengers. RPC v1.0+
SystemCapabilityType.SPEECH Contains information about TTS capabilities on the SDL platform. Platforms may support text, SAPI phonemes, LH PLUS phonemes, pre-recorded speech, and silence. RPC v1.0+
Currently only available in the SDL_iOS and SDL JavaScript libraries RPC v3.0+
SystemCapabilityType.VOICE_RECOGNITION The voice-recognition capabilities of the connected SDL platform. The platform may be able to recognize spoken text in the current language. RPC v1.0+
SystemCapabilityType.AUDIO_PASSTHROUGH Describes the sampling rate, bits per sample, and audio types available. RPC v2.0+
SystemCapabilityType.PCM_STREAMING Describes different audio type configurations for the audio PCM stream service, e.g. {8kHz,8-bit,PCM}. RPC v4.1+
SystemCapabilityType.HMI Returns whether or not the app can support built-in navigation and phone calls. RPC v3.0+
SystemCapabilityType.APP_SERVICES Describes the capabilities of app services including what service types are supported and the current state of services. RPC v5.1+
SystemCapabilityType.NAVIGATION Describes the built-in vehicle navigation system's APIs. RPC v4.5+
SystemCapabilityType.PHONE_CALL Describes the built-in phone calling capabilities of the IVI system. RPC v4.5+
SystemCapabilityType.VIDEO_STREAMING Describes the abilities of the head unit to video stream projection applications. RPC v4.5+
SystemCapabilityType.REMOTE_CONTROL Describes the abilities of an app to control built-in aspects of the IVI system. RPC v4.5+
SystemCapabilityType.SEAT_LOCATION Describes the positioning of each seat in a vehicle RPC v6.0+

Deprecated Properties

The following properties are deprecated on SDL Android 4.10 because as of RPC v6.0 they are deprecated. However, these properties will still be filled with information. When connected on RPC <6.0, the information will be exactly the same as what is returned in the RegisterAppInterfaceResponse and SetDisplayLayoutResponse. However, if connected on RPC >6.0, the information will be converted from the newer-style display information, which means that some information will not be available.

Parameters Description
SystemCapabilityType.DISPLAY Information about the HMI display. This includes information about available templates, whether or not graphics are supported, and a list of all text fields and the max number of characters allowed in each text field.
SystemCapabilityType.BUTTON A list of available buttons and whether the buttons support long, short and up-down presses.
SystemCapabilityType.SOFTBUTTON A list of available soft buttons and whether the button support images. Also, information about whether the button supports long, short and up-down presses.
SystemCapabilityType.PRESET_BANK If returned, the platform supports custom on-screen presets.

Image Specifics

Images may be formatted as PNG, JPEG, or BMP. You can find which image types and resolutions are supported using the system capability manager.

Since the head unit connection is often relatively slow (especially over Bluetooth), you should pay attention to the size of your images to ensure that they are not larger than they need to be. If an image is uploaded that is larger than the supported size, the image will be scaled down by Core.

ImageField field = sdlManager.getSystemCapabilityManager().getDefaultMainWindowCapability().getImageFields().get(index);
ImageResolution resolution = field.getImageResolution();

Example Image Sizes

Below is a table with example image sizes. Check the SystemCapabilityManager for the exact image sizes desired by the system you are connecting to. The connected system should be able to scale down larger sizes, but if the image you are sending is much larger than desired, then performance will be impacted.

ImageName Used in RPC Details Size Type
softButtonImage Show Image shown on softbuttons on the base screen 70x70px png, jpg, bmp
choiceImage CreateInteractionChoiceSet Image shown in the manual part of an performInteraction either big (ICON_ONLY) or small (LIST_ONLY) 70x70px png, jpg, bmp
choiceSecondaryImage CreateInteractionChoiceSet Image shown on the right side of an entry in (LIST_ONLY) performInteraction 35x35px png, jpg, bmp
vrHelpItem SetGlobalProperties Image shown during voice interaction 35x35px png, jpg, bmp
menuIcon SetGlobalProperties Image shown on the “More…” button 35x35px png, jpg, bmp
cmdIcon AddCommand Image shown for commands in the "More…" menu 35x35px png, jpg, bmp
appIcon SetAppIcon Image shown as Icon in the "Mobile Apps" menu 70x70px png, jpg, bmp
graphic Show Image shown on the base screen as cover art 185x185px png, jpg, bmp

Querying and Subscribing System Capabilities

Capabilities that can be updated can be queried and subscribed to using the SystemCapabilityManager.

Determining Support for System Capabilities

You should check if the head unit supports your desired capability before subscribing to or updating the capability.

boolean navigationSupported = sdlManager.getSystemCapabilityManager().isCapabilitySupported(SystemCapabilityType.NAVIGATION);

Manual Querying for System Capabilities

Most head units provide features that your app can use: making and receiving phone calls, an embedded navigation system, video and audio streaming, as well as supporting app services. To pull information about this capability, use the SystemCapabilityManager to query the head unit for the desired capability. If a capability is unavailable, the query will return null.

sdlManager.getSystemCapabilityManager().getCapability(SystemCapabilityType.APP_SERVICES, new OnSystemCapabilityListener() {
    @Override
    public void onCapabilityRetrieved(Object capability) {
        AppServicesCapabilities servicesCapabilities = (AppServicesCapabilities) capability;
    }

    @Override
    public void onError(String info) {
        // Handle Error
    }
}, false);

Subscribing to System Capabilities (RPC v5.1+)

In addition to getting the current system capabilities, it is also possible to subscribe for updates when the head unit capabilities change. Since this information must be queried from Core you must implement the OnSystemCapabilityListener.

Note

If supportsSubscriptions == false, you can still subscribe to capabilities, however, you must manually poll for new capability updates using getCapability(type, listener, forceUpdate) with forceUpdate set to true. All subscriptions will be automatically updated when that method returns a new value.

The DISPLAYS type can be subscribed on all SDL versions.

Checking if the Head Unit Supports Subscriptions

boolean supportsSubscriptions = sdlManager.getSystemCapabilityManager().supportsSubscriptions();

Subscribe to a Capability

sdlManager.getSystemCapabilityManager().addOnSystemCapabilityListener(SystemCapabilityType.APP_SERVICES, new OnSystemCapabilityListener() {
    @Override
    public void onCapabilityRetrieved(Object capability) {
        AppServicesCapabilities servicesCapabilities = (AppServicesCapabilities) capability;
    }

    @Override
    public void onError(String info) {
        // Handle Error 
    }
});
View on GitHub.com
Previous Section Next Section