Difference between adjustResize and adjustPan in android?

From the Android Developer Site link

“adjustResize”

The activity’s main window is always resized to make room for the soft
keyboard on screen.

“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.

according to your comment, use following in your activity manifest

<activity android:windowSoftInputMode="adjustResize"> </activity>

Leave a Comment