Bixby Developer Center

References

match

required

Match patterns are used to dynamically look up the appropriate data (layout, dialog, selection strategies, or views) for the current context.

Examples

This match pattern is used for SearchGoodsResult to display various items in a result-view.

result-view {
match:SearchGoodsResult(result)
...
}

This match pattern for an input-view looks for CallLogInfo used in input for ComposeMessage.

input-view {
match: CallLogInfo(this) {
to-input : ComposeMessage
}
...
}

For more information on match patterns, see Match Patterns.

Child Keys

any
optional
Use the wildcard underscore (_) to match any node, regardless of its type