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
Added in API level 1
public interface

FilterQueryProvider

android.widget.FilterQueryProvider

Class Overview

This class can be used by external clients of CursorAdapter and CursorTreeAdapter to define how the content of the adapter should be filtered.

Summary

Public Methods
abstract Cursor runQuery ( CharSequence constraint)
Runs a query with the specified constraint.

Public Methods

public abstract Cursor runQuery ( CharSequence constraint)

Added in API level 1

Runs a query with the specified constraint. This query is requested by the filter attached to this adapter. Contract: when constraint is null or empty, the original results, prior to any filtering, must be returned.

Parameters
constraint the constraint with which the query must be filtered
Returns
  • a Cursor representing the results of the new query