I have a MultiAutoCompleteTextView
that's tied to a TextWatcher
and an adapter that returns stuff from a database based on what's typed in the field. This is all working properly, but I'm looking for a way to change the default token definition behavior, so when a user taps back somewhere in a token and adds a character, the entire token is considered as the query input, not the text from the left-most token to the cursor.
Here's a slightly more concrete example:
- I have data as follows: a, b, aa, ab, aab, abb, aba, bb
- I have the following tokens entered: aa, bb
- I put the cursor in between the two a's (i.e., a|a)
- I enter the letter 'b'
- I get the following suggestion: ab
- I expected a suggestion for: aba
I hope I explained that well enough. I did a small sample project using no fancy stuffs, only defaults and a simple String
array and I have the same behavior, which seems consistent with how the docs define tokens with relation to the cursor's position.
So, is there a reliable way to include suggestions returned the other way described in my example? Even our SO tag system works like that.
You need to set a custom
MultiAutoCompleteTextView.Tokenizer
on yourMultiAutoCompleteTextView
using thesetTokenizer()
function. Override thefindTokenStart
andfindTokenEnd
functions to make sure that it's grabbing the entire text being modified.