Android: Dropdown of AutoCompleteTextView is covered by the keyboard [duplicate]
I got more or less the same problem as described here: android autocompletetextview hint results hidden under keyboard
Can anyone help?
try adding this to your manifest under activity:
android:windowSoftInputMode="stateHidden|adjustResize"
or
android:windowSoftInputMode="stateHidden|adjustPan"
as per the developer docs i have had pretty good success with that.
精彩评论