Filter.InvokeFilter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- InvokeFilter(ICharSequence)
- PerformFiltering(ICharSequence)
- <xref:Android.Widget.Filter.PublishResults(Java.Lang.ICharSequence%2c+.FilterResults)>
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
- listener
- Filter.IFilterListener
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.