MultiAutoCompleteTextView.PerformFiltering Method

Definition

Overloads

PerformFiltering(ICharSequence, Int32, Int32, Int32)

Starts filtering the content of the drop down list.

PerformFiltering(String, Int32, Int32, Int32)

Starts filtering the content of the drop down list.

PerformFiltering(ICharSequence, Int32, Int32, Int32)

Starts filtering the content of the drop down list.

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

Parameters

start
Int32
end
Int32
keyCode
Int32
Attributes

Remarks

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

Java documentation for android.widget.MultiAutoCompleteTextView.performFiltering(java.lang.CharSequence, int, int, 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, Int32, Int32)

Starts filtering the content of the drop down list.

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

Parameters

text
String
start
Int32
end
Int32
keyCode
Int32

Remarks

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

Java documentation for android.widget.MultiAutoCompleteTextView.performFiltering(java.lang.CharSequence, int, int, 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