Bixby Developer Center

References

select-button-text

optionalvalue optional

Selection button text. Used if the user can drill into the option and see a more detailed view of the selected item.

In order for users to select an item in this input view with voice, you need to add the text specified in select-button-text as an affirmative item in item-selection-confirmation in your navigation.bxb file. For more information, see Navigation Commands in the Hands-Free List Navigation Developers' Guide.

Example

input-view {
match: DestinationPoint

message ("Where would you like to go?")

render {
macro (location:Autocomplete) {
param (noResultText) {
dialog-template ("No results")
}
param (placeholder) {
dialog-template ("Search for locations")
}
select-button-text {
template ("Ok")
}
}
}
}

View master on GitHub

Child Keys

macro
optional
Defines a layout, a portion of a layout, or a dialog with a macro
template
optional
Text to be passed
template-macro
optional
Encapsulates dialog logic that normally would lead to duplication