AbsListView.OnTextChanged Method

Definition

Overloads

OnTextChanged(String, Int32, Int32, Int32)

For our text watcher that is associated with the text filter.

OnTextChanged(ICharSequence, Int32, Int32, Int32)

For our text watcher that is associated with the text filter.

OnTextChanged(String, Int32, Int32, Int32)

For our text watcher that is associated with the text filter.

public void OnTextChanged (string? s, int start, int before, int count);
member this.OnTextChanged : string * int * int * int -> unit

Parameters

s
String
start
Int32
before
Int32
count
Int32

Remarks

For our text watcher that is associated with the text filter. Performs the actual filtering as the text changes, and takes care of hiding and showing the popup displaying the currently entered filter text.

Java documentation for android.widget.AbsListView.onTextChanged(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

OnTextChanged(ICharSequence, Int32, Int32, Int32)

For our text watcher that is associated with the text filter.

[Android.Runtime.Register("onTextChanged", "(Ljava/lang/CharSequence;III)V", "GetOnTextChanged_Ljava_lang_CharSequence_IIIHandler")]
public virtual void OnTextChanged (Java.Lang.ICharSequence? s, int start, int before, int count);
[<Android.Runtime.Register("onTextChanged", "(Ljava/lang/CharSequence;III)V", "GetOnTextChanged_Ljava_lang_CharSequence_IIIHandler")>]
abstract member OnTextChanged : Java.Lang.ICharSequence * int * int * int -> unit
override this.OnTextChanged : Java.Lang.ICharSequence * int * int * int -> unit

Parameters

start
Int32
before
Int32
count
Int32

Implements

Attributes

Remarks

For our text watcher that is associated with the text filter. Performs the actual filtering as the text changes, and takes care of hiding and showing the popup displaying the currently entered filter text.

Java documentation for android.widget.AbsListView.onTextChanged(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