AbsListView.TextFilterEnabled Property
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.
Indicates whether type filtering is enabled for this view -or- Enables or disables the type filter window.
public virtual bool TextFilterEnabled { [Android.Runtime.Register("isTextFilterEnabled", "()Z", "GetIsTextFilterEnabledHandler")] get; [Android.Runtime.Register("setTextFilterEnabled", "(Z)V", "GetSetTextFilterEnabled_ZHandler")] set; }
[<get: Android.Runtime.Register("isTextFilterEnabled", "()Z", "GetIsTextFilterEnabledHandler")>]
[<set: Android.Runtime.Register("setTextFilterEnabled", "(Z)V", "GetSetTextFilterEnabled_ZHandler")>]
member this.TextFilterEnabled : bool with get, set
Property Value
true if type filtering is enabled, false otherwise
- Attributes
Remarks
Property getter documentation:
Indicates whether type filtering is enabled for this view
Java documentation for android.widget.AbsListView.isTextFilterEnabled()
.
Property setter documentation:
Enables or disables the type filter window. If enabled, typing when this view has focus will filter the children to match the users input. Note that the Adapter
used by this view must implement the Filterable
interface.
Java documentation for android.widget.AbsListView.setTextFilterEnabled(boolean)
.
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.