We have a chat application for which we recently introduced our own keyboard for Android. In addition, in addition to this, we implement several auto-complete using MultiAutoCompleteTextView. This can be done by creating a custom tokenizer using the standard procedure, as indicated in the Android docs.
Everything seems to be working fine, except for one problem that when converting an EditText to a MultiAutoCompleteTextView or an Android automatic dictionary sentence, AutoCompleteTextView stops appearing. As a chat application, it is extremely important for our users that we offer vocabulary sentences.
There are several other people who posted a similar question, but they, I think, get a lot of community attention. AutoCompleteTextView does not display dictionary suggestions
Conversely, a single post in StackOverflow suggests that he can see dictionary suggestions suggesting a way to disable it. AutoCompleteTextView without dictionary hints
Following some suggestions, I added
android:inputType="textAutoCorrect"
but that didn't help either.
I have simple questions:
Is it possible to have a dictionary in AutoCompleteTextView or MultiAutoCompleteTextView?
In case it is possible, how to do it?
Thanks in advance.
android android-layout android-textview autocompletetextview
karora
source share