EditText, adjustPan, ScrollView issue in android

后端 未结 4 1884
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条回答
  •  Happy的楠姐
    2020-12-15 22:52

    I was suffering from the same issue and I a found solution. So, maybe it will help you.

    Please give following attributes to ScrollView tag:

    android:isScrollContainer="false"
    

    And in manifest of your activity to :

    android:windowSoftInputMode="adjustPan"
    

提交回复
热议问题