Added in API level 11
OnQueryTextListener
interface OnQueryTextListener
android.widget.SearchView.OnQueryTextListener |
Callbacks for changes to the query text.
Summary
Public methods | |
---|---|
abstract Boolean |
onQueryTextChange(newText: String!) Called when the query text is changed by the user. |
abstract Boolean |
onQueryTextSubmit(query: String!) Called when the user submits the query. |
Public methods
onQueryTextChange
Added in API level 11
abstract fun onQueryTextChange(newText: String!): Boolean
Called when the query text is changed by the user.
Parameters | |
---|---|
newText |
String!: the new content of the query text field. |
Return | |
---|---|
Boolean |
false if the SearchView should perform the default action of showing any suggestions if available, true if the action was handled by the listener. |
onQueryTextSubmit
Added in API level 11
abstract fun onQueryTextSubmit(query: String!): Boolean
Called when the user submits the query. This could be due to a key press on the keyboard or due to pressing a submit button. The listener can override the standard behavior by returning true to indicate that it has handled the submit request. Otherwise return false to let the SearchView handle the submission by launching any associated intent.
Parameters | |
---|---|
query |
String!: the query text that is to be submitted |
Return | |
---|---|
Boolean |
true if the query has been handled by the listener, false to let the SearchView perform the default action. |