Android: ScrollView not scrolling with keyboard out

后端 未结 11 1570
别跟我提以往
别跟我提以往 2020-12-04 15:23

I\'ve got a layout with some views, from which one is an EditText. The layout easily fits on one page, BUT, when the soft keyboard is out, the layout doesn\'t scroll. Here\'

11条回答
  •  既然无缘
    2020-12-04 16:25

    If your First Fragment Scroll perfectly and the second fragment did not scroll then you should use the second fragment replace and do below things

    1.Add in ScrollView

    android:fillViewport="true"
    android:fitsSystemWindows="true"
    

    2.Add in Manifest

    android:windowSoftInputMode="adjustResize|stateVisible"
    

    If you add fragment then my suggestion is you need to Replace the Fragment

提交回复
热议问题