I had implemented auto-suggestion functionality using MultiAutoCompleteTextView
successfully and everything is working fine except i'm not able to display auto-suggestion list above the soft-keyboard.
Android Gmail app has the same functionality. [see below image]
Question:
I want the exact functionality, want to a display a suggestion list on the soft-keyboard but i don't have any clue how to achieve this. My suggestion list is always hidden behind the soft-keyboard.
How to show auto-suggestion list above the soft-keyboard like Gmail app?
I had tried playing with different android:imeOptions
and different xml attributes and did a lot of searching but nothing helped.
Is there any public Api or XML attribute is available to do so? Does anyone have any clue or idea about how to achieve this.
Code Structure : My fragment opens an AlertDialog
which contains MultiAutoCompleteTextView
where i'm implementing auto-suggest.
Any help or suggestion which leads to the right direction, would be greatly appreciated.