Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
protected static class

Filter.FilterResults

extends Object
java.lang.Object
   ↳ android.widget.Filter.FilterResults

Class Overview

Holds the results of a filtering operation. The results are the values computed by the filtering operation and the number of these values.

Summary

Fields
public int count

Contains the number of values computed by the filtering operation.

public Object values

Contains all the values computed by the filtering operation.

Public Constructors
Filter.FilterResults ()
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public int count

Added in API level 1

Contains the number of values computed by the filtering operation.

public Object values

Added in API level 1

Contains all the values computed by the filtering operation.

Public Constructors

public Filter.FilterResults ()

Added in API level 1