EditText, adjustPan, ScrollView issue in android

后端 未结 4 1865
Happy的楠姐
Happy的楠姐 2020-12-15 22:32

I have a EditText which is enclosed in ScrollView, but when the keyboard comes up.

You can NOT scroll down to the fields that are now cover

4条回答
  •  时光说笑
    2020-12-15 23:07

    just struggled for 3 hours to fix this same problem.

    What worked for me is to remove "adjustPan" from the windowSoftInputMode in the manifest.

    So I went from :

    android:windowSoftInputMode="adjustResize|adjustPan|stateHidden"
    

    to:

    android:windowSoftInputMode="adjustResize|stateHidden"
    

    and it fixed everything for me.

    I hope this helps anyone else that stumbles upon this too. Funny enough, on my other screens it all still works regardless of the adjustPan.

提交回复
热议问题