AutoCompleteTextView.PerformFiltering Method

Definition

Overloads

PerformFiltering(ICharSequence, Int32)

Starts filtering the content of the drop down list.

PerformFiltering(String, Int32)

Starts filtering the content of the drop down list.

PerformFiltering(ICharSequence, Int32)

Starts filtering the content of the drop down list.

[Android.Runtime.Register("performFiltering", "(Ljava/lang/CharSequence;I)V", "GetPerformFiltering_Ljava_lang_CharSequence_IHandler")]
protected virtual void PerformFiltering (Java.Lang.ICharSequence? text, int keyCode);
[<Android.Runtime.Register("performFiltering", "(Ljava/lang/CharSequence;I)V", "GetPerformFiltering_Ljava_lang_CharSequence_IHandler")>]
abstract member PerformFiltering : Java.Lang.ICharSequence * int -> unit
override this.PerformFiltering : Java.Lang.ICharSequence * int -> unit

Parameters

text
ICharSequence

the filtering pattern

keyCode
Int32

the last character inserted in the edit box; beware that this will be null when text is being added through a soft input method.

Attributes

Remarks

Starts filtering the content of the drop down list. The filtering pattern is the content of the edit box. Subclasses should override this method to filter with a different pattern, for instance a substring of text.

Java documentation for android.widget.AutoCompleteTextView.performFiltering(java.lang.CharSequence, int).

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

PerformFiltering(String, Int32)

Starts filtering the content of the drop down list.

protected void PerformFiltering (string? text, int keyCode);
member this.PerformFiltering : string * int -> unit

Parameters

text
String

the filtering pattern

keyCode
Int32

the last character inserted in the edit box; beware that this will be null when text is being added through a soft input method.

Remarks

Starts filtering the content of the drop down list. The filtering pattern is the content of the edit box. Subclasses should override this method to filter with a different pattern, for instance a substring of text.

Java documentation for android.widget.AutoCompleteTextView.performFiltering(java.lang.CharSequence, int).

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