Added in API level 11
OnSuggestionListener
Stay organized with collections
Save and categorize content based on your preferences.
interface OnSuggestionListener
Callback interface for selection events on suggestions. These callbacks are only relevant when a SearchableInfo has been specified by setSearchableInfo
.
Summary
Public methods | |
---|---|
abstract Boolean |
onSuggestionClick(position: Int) Called when a suggestion was clicked. |
abstract Boolean |
onSuggestionSelect(position: Int) Called when a suggestion was selected by navigating to it. |
Public methods
onSuggestionClick
Added in API level 11
abstract fun onSuggestionClick(position: Int): Boolean
Called when a suggestion was clicked.
Parameters | |
---|---|
position |
Int: the absolute position of the clicked item in the list of suggestions. |
Return | |
---|---|
Boolean |
true if the listener handles the event and wants to override the default behavior of launching any intent or submitting a search query specified on that item. Return false otherwise. |
onSuggestionSelect
Added in API level 11
abstract fun onSuggestionSelect(position: Int): Boolean
Called when a suggestion was selected by navigating to it.
Parameters | |
---|---|
position |
Int: the absolute position in the list of suggestions. |
Return | |
---|---|
Boolean |
true if the listener handles the event and wants to override the default behavior of possibly rewriting the query based on the selected item, false otherwise. |