NavigationTemplate
@CarProtocol
public final class NavigationTemplate implements Template
A template for showing navigation information.
This template has two independent sections which can be updated:
- Navigation information such as routing instructions or navigation-related messages.
- Travel estimates to the destination.
To update the template as the user navigates, call invalidate to provide the host with a new template with the updated information.
The template itself does not expose a drawing surface. In order to draw on the canvas, use setSurfaceCallback.
See androidx.car.app.notification.CarAppExtender for how to show alerts with notifications. Frequent alert notifications distract the driver and are discouraged.
SurfaceCallback methods, such as:
In order to receive the callbacks, add an PAN button in a map ActionStrip via the setMapActionStrip method:
... Action panAction = new Action.Builder(Action.PAN).setIcon(myPanIcon).build(); ActionStrip mapActionStrip = new ActionStrip.Builder().addAction(panAction).build(); NavigationTemplate.Builder builder = new NavigationTemplate.Builder(); builder.setMapActionStrip(mapActionStrip); ...
PAN button, the host enters the pan mode. In this mode, the host translates the user input from non-touch input devices, such as rotary controllers and touchpads, and calls the appropriate SurfaceCallback methods. Respond to the user action to enter or exit the pan mode via setPanModeListener.
If the app does not include this button in the map ActionStrip, the app will not receive the user input for panning gestures from SurfaceCallback methods, and the host will exit any previously activated pan mode.
The host may hide the pan button in some head units in which the user does not need it. Also, the host may hide other UI components in the template while the user is in the pan mode.
Note that not all head units support touch gestures, and not all touch screens support multi-touch gestures. Therefore, some SurfaceCallback methods may not be called in some cars. In order to support different head units, use the buttons in the map action strip to provide necessary functionality, such as the zoom-in and zoom-out buttons.
onGetTemplate, this template supports any content changes as refreshes. This allows apps to interactively update the turn-by-turn instructions without the templates being counted against the template quota.
Further, this template is considered a view that the user will stay and consume contents from, and the host will reset the template quota once an app reaches this template.
In order to use this template your car app MUST declare that it uses the
androidx.car.app.NAVIGATION_TEMPLATES permission in the manifest.
Summary
Nested types |
|---|
public final class NavigationTemplate.BuilderA builder of |
public interface NavigationTemplate.NavigationInfoRepresents navigation information such as routing instructions or navigation-related messages. |
Public methods |
|
|---|---|
boolean |
|
@Nullable ActionStrip |
Returns the |
@Nullable CarColor |
Returns the background color used for the navigation information or |
@Nullable TravelEstimate |
Returns the |
@Nullable ActionStrip |
@RequiresCarApi(value = 2)Returns the map |
@Nullable NavigationTemplate.NavigationInfo |
Returns the navigation information displayed on the template or |
@Nullable PanModeDelegate |
@RequiresCarApi(value = 2)Returns the |
@Nullable Toggle |
@RequiresCarApi(value = 2)This method is deprecated. |
int |
hashCode() |
@NonNull String |
toString() |
Public methods
getActionStrip
public @Nullable ActionStrip getActionStrip()
Returns the ActionStrip for this template or null if not set.
| See also | |
|---|---|
setActionStrip |
getBackgroundColor
public @Nullable CarColor getBackgroundColor()
Returns the background color used for the navigation information or null if set to the default value.
getDestinationTravelEstimate
public @Nullable TravelEstimate getDestinationTravelEstimate()
Returns the TravelEstimate to the final destination or null if there is no travel estimate information.
getMapActionStrip
@RequiresCarApi(value = 2)
public @Nullable ActionStrip getMapActionStrip()
Returns the map ActionStrip for this template or null if not set.
| See also | |
|---|---|
setMapActionStrip |
getNavigationInfo
public @Nullable NavigationTemplate.NavigationInfo getNavigationInfo()
Returns the navigation information displayed on the template or null if there is no navigation information on top of the map.
getPanModeDelegate
@RequiresCarApi(value = 2)
public @Nullable PanModeDelegate getPanModeDelegate()
Returns the PanModeDelegate that should be called when the user interacts with pan mode on this template, or null if a PanModeListener was not set.
@RequiresCarApi(value = 2)
public @Nullable TogglegetPanModeToggle()
Returns whether this template is in the pan mode.