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?

link|improve this question
feedback

2 Answers

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 use InputType.TYPE_TEXT_FLAG_AUTO_CORRECT was to include include InputType.TYPE_CLASS_TEXT also. So it would result in something like this:

multiAutoCompleteTextView.setRawInputType(InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_FLAG_CAP_SENTENCES|InputType.TYPE_TEXT_FLAG_AUTO_CORRECT|InputType.TYPE_TEXT_FLAG_MULTI_LINE);
link|improve this answer
feedback

You can ovveride the MultiAutoCompleteTextView and add the needed implementation of the default textview. how? you can see the android source code here: http://netmite.com/android/mydroid/2.0/

I personally never user the MultiAutoCompleteTextView so I don't know if there is a cleaner way to implement this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.