android.widget.Filter.FilterListener |
Known Indirect Subclasses
AbsListView |
Base class that can be used to implement virtualized lists of items. |
AutoCompleteTextView |
An editable text view that shows completion suggestions automatically
while the user is typing. |
ExpandableListView |
A view that shows items in a vertically scrolling two-level list. |
GridView |
A view that shows items in two-dimensional scrolling grid. |
ListView |
A view that shows items in a vertically scrolling list. |
MultiAutoCompleteTextView |
An editable text view, extending AutoCompleteTextView , that
can show completion suggestions for the substring of the text where
the user is typing instead of necessarily for the entire thing. |
|
Class Overview
Listener used to receive a notification upon completion of a filtering
operation.
Summary
Public Methods |
abstract
void
|
onFilterComplete(int count)
Notifies the end of a filtering operation.
|
Public Methods
public
abstract
void
onFilterComplete
(int count)
Notifies the end of a filtering operation.
Parameters
count
| the number of values computed by the filter
|