-1

I put the following line in AndroidMainfest

windowSoftInputMode = "adjustPan"

, but I had a problem, the page has 2 input fields username and password when zhatii on the first field (no matter your username or password) keyboard appears but there is no increase page, but if you click on the second box, then turns on the zoom and page increases that can be done that would page do not zoom?

1 Answers1

0

Its not zoomed. It must have been panned to make room for keyboard in a way that the edittext which is focused does not get hidden by keyboard.

adjustPan

The activity's main window is not resized to make room for the soft keyboard. Rather, the contents of the window are automatically panned so that the current focus is never obscured by the keyboard and users can always see what they are typing. This is generally less desirable than resizing, because the user may need to close the soft keyboard to get at and interact with obscured parts of the window.

Read the description of all possible values over here

MysticMagicϡ
  • 28,593
  • 16
  • 73
  • 124