layout of the screen moves up when keyboard is displayed

后端 未结 6 1183
旧巷少年郎
旧巷少年郎 2020-12-06 04:56

Let say I have the following layout:

when I click on the edit text at the bottom I get this:

As you can notice the image from the top goe

6条回答
  •  一整个雨季
    2020-12-06 05:25

    My EditText kept moving up as well.

    Adding gravity to the Edit Text seems to solve the problem. The Keyboard was pushing my EditText up, so I added gravity to the bottom of the Edit Text in the XML.

    android:gravity=bottom
    

提交回复
热议问题