I use the MVVMCross wrapper around the Xallarin Android AutoCompleteTextView.
I am using the PartialTextChanged event to report that I need to call the ViewModel from the view to get additional suggestions.
This works fine until the user selects an item from the list. After that, no changes to the text will raise the PartialTextChanged event. It is as if filtering was disabled after selection.
There is a SetText method in AutoCompleteTextView that seems to enable filtering on \ off, but I'm not sure if you can use it.
TextChangedEvent still triggers the control, like AfterTextChanged, not PartialTextChanged, and this is what controls the updates.
I have debugged the source of MVVMCross and can't see the solution. Does anyone have any ideas?
Where can I view their mondroid \ xamarin android code?
thank
source
share