Android: ScrollView not scrolling with keyboard out

后端 未结 11 1585
别跟我提以往
别跟我提以往 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:04

    In my case any of the solution above does not work until I REMOVE

    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

    in my activity, I use that code to get a full screen display. Maybe for certain cases, try to remove any setup of full screen to make any of the above solution works.

提交回复
热议问题