I’m using a MultiAutoCompleteTextView in my app to show various suggestions.
I noticed that MultiAutoCompleteTextView doesn’t support the regular android suggerstion that come defaultly with an EditText (the strip of suggestions that pops above the soft keyboard.
Is there a way of showing both the regular suggestions, and the ones I want to show in my MultiAutoCompleteTextView?
I found that setting the input types only took effect when I set them with
setRawInputType(). I also found out that the only way to useInputType.TYPE_TEXT_FLAG_AUTO_CORRECTwas to includeinclude
InputType.TYPE_CLASS_TEXTalso. So it would result in something like this: