Add an attribute in your AndroidManifest.xml
android:windowSoftInputMode="adjustPan|adjustResize"
Which will auto resize and adjust the soft keyboard.
在menifest中在对应的activity中添加配置属性:android:windowSoftInputMode="adjustPan|adjustResize"
http://stackoverflow.com/questions/3480529/android-autocompletetextview-hint-results-hidden-under-keyboard
|
Add an attribute in your AndroidManifest.xml android:windowSoftInputMode="adjustPan|adjustResize" Which will auto resize and adjust the soft keyboard. |