2

I got more or less the same problem as described here: android autocompletetextview hint results hidden under keyboard

Can anyone help?

Community
  • 1
  • 1
Robert Hahn
  • 49
  • 2
  • 4

1 Answers1

14

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.

dylan murphy
  • 1,370
  • 1
  • 18
  • 33