breautek commented on issue #1723: URL: https://github.com/apache/cordova-android/issues/1723#issuecomment-2225929328
`adjustPan` is not suppose to do any resizing. It's suppose to pan the view so that the focused input is always visible, potentially obscuring other UI. `adjustResize` resizes the view, and if your content is responsive it can be scrolled and such... I think this is maybe what you want instead. See [android docs](https://developer.android.com/guide/topics/manifest/activity-element#wsoft) for more information. `adjustResize`: > The activity's main window is always resized to make room for the soft keyboard on screen. `adjustPan`: > The activity's main window isn't resized to make room for the soft keyboard. Rather, the contents of the window automatically pan 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 might need to close the soft keyboard to get at and interact with obscured parts of the window. If `adjustPan` did any resizing on API 33 it was likely due to a bug in API 33 cause it was never suppose to do any resizing. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org