AutoCompleteTextView (Beta): Completion Modes
TKAutoCompleteTextView
provides two completion modes:
-
TKAutoCompleteCompletionModeStartsWith
- returns suggestions that start with what the end-user has typed.
-
TKAutoCompleteCompletionModeContains
- returns suggestions that contain what the end-user has typed.
They are accessible through the TKDataSource
. The default completion mode is TKAutoCompleteCompletionModeStartsWith
.
this.dataSource.Settings.AutoComplete.CompletionMode = TKAutoCompleteCompletionMode.StartsWith;