Filter.InvokeFilter Method

Definition

Overloads

InvokeFilter(ICharSequence)

Starts an asynchronous filtering operation.

InvokeFilter(String)

Starts an asynchronous filtering operation.

InvokeFilter(ICharSequence, Filter+IFilterListener)

Starts an asynchronous filtering operation.

InvokeFilter(String, Filter+IFilterListener)

Starts an asynchronous filtering operation.

InvokeFilter(ICharSequence)

Starts an asynchronous filtering operation.

[Android.Runtime.Register("filter", "(Ljava/lang/CharSequence;)V", "")]
public void InvokeFilter (Java.Lang.ICharSequence? constraint);
[<Android.Runtime.Register("filter", "(Ljava/lang/CharSequence;)V", "")>]
member this.InvokeFilter : Java.Lang.ICharSequence -> unit

Parameters

constraint
ICharSequence

the constraint used to filter the data

Attributes

Remarks

Starts an asynchronous filtering operation. Calling this method cancels all previous non-executed filtering requests and posts a new filtering request that will be executed later.

Java documentation for android.widget.Filter.filter(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

  • <xref:Android.Widget.Filter.InvokeFilter(Java.Lang.ICharSequence%2c+.IFilterListener)>

Applies to

InvokeFilter(String)

Starts an asynchronous filtering operation.

public void InvokeFilter (string? constraint);
member this.InvokeFilter : string -> unit

Parameters

constraint
String

the constraint used to filter the data

Remarks

Starts an asynchronous filtering operation. Calling this method cancels all previous non-executed filtering requests and posts a new filtering request that will be executed later.

Java documentation for android.widget.Filter.filter(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

InvokeFilter(ICharSequence, Filter+IFilterListener)

Starts an asynchronous filtering operation.

[Android.Runtime.Register("filter", "(Ljava/lang/CharSequence;Landroid/widget/Filter$FilterListener;)V", "")]
public void InvokeFilter (Java.Lang.ICharSequence? constraint, Android.Widget.Filter.IFilterListener? listener);
[<Android.Runtime.Register("filter", "(Ljava/lang/CharSequence;Landroid/widget/Filter$FilterListener;)V", "")>]
member this.InvokeFilter : Java.Lang.ICharSequence * Android.Widget.Filter.IFilterListener -> unit

Parameters

constraint
ICharSequence

the constraint used to filter the data

listener
Filter.IFilterListener

a listener notified upon completion of the operation

Attributes

Remarks

Java documentation for android.widget.Filter.filter(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

See also

Applies to

InvokeFilter(String, Filter+IFilterListener)

Starts an asynchronous filtering operation.

public void InvokeFilter (string? constraint, Android.Widget.Filter.IFilterListener? listener);
member this.InvokeFilter : string * Android.Widget.Filter.IFilterListener -> unit

Parameters

constraint
String

the constraint used to filter the data

Remarks

Java documentation for android.widget.Filter.filter(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to