Added in API level 1
    FilterResults
protected open class FilterResults
| kotlin.Any | |
| ↳ | android.widget.Filter.FilterResults | 
Holds the results of a filtering operation. The results are the values computed by the filtering operation and the number of these values.
Summary
| Public constructors | |
|---|---|
| Properties | |
|---|---|
| Int | Contains the number of values computed by the filtering operation. | 
| Any! | Contains all the values computed by the filtering operation. | 
Public constructors
Properties
count
Added in API level 1
      var count: Int
Contains the number of values computed by the filtering operation.
values
Added in API level 1
      var values: Any!
Contains all the values computed by the filtering operation.
