Android Study Notes (29): SearchView in the search box
SearchView provides a search box that listens to user input. When a user submits a search request, the listener can also perform actual operations.
Common XML attributes and related methods:
XML attributes |
Related Methods |
Description |
Android: iconifiedByDefault |
SetIconifiedByDefault (boolean) |
Set whether the search box is automatically scaled down to an icon |
|
SetSubmitButtonEnable (boolean) |
Set whether to display the search button |
Android: inputType |
SetInputType (int) |
Set input text format |
Android: maxWidth |
SetMaxWidth (int) |
Set the maximum width |
Android: queryHint |
SetQueryHint (CharSequence) |
Set prompt text |
You can use setOnQueryTextListener () to bind a listener event to the search box.
You can use setQueryTextSubmit () to bind a listener event to the search button.
You can add a ListView for SearchView to provide it with the automatic completion function.