public interface FilterQueryProvider

android.widget.FilterQueryProvider



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

runQuery

public abstract Cursor runQuery (CharSequence constraint)

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 CharSequence: the constraint with which the query must be filtered
Returns
Cursor a Cursor representing the results of the new query

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.