Multiple choice

How to make default keyboard not to overlap layout?

  1. windowSoftInputMode="stateUnchanged"

  2. windowSoftInputMode="stateVisible"

  3. windowSoftInputMode="adjustResize"

  4. windowSoftInputMode="adjustPan"

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

adjustPan shifts the window contents upward to keep the focused field visible, which is what prevents the keyboard from covering the layout. stateUnvisible and stateVisible control keyboard visibility, not layout behavior. adjustResize resizes the layout, which can cause overlap issues in some configurations.