post my answer for who's searching about ionic keyboard trigger resize webview...
Ionic Android will auto resizing webview while focusing input.
My need is prevent this default behavior 👇🏻
CapacitorConfig = {
...
plugins: {
Keyboard: {
//OptionA:
resizeOnFullScreen: false,
//or
//OptionB:
//resize: "none",
},
}
}
# then run command below
# to copy config options to Android project at `/MyIonicApp/android/app/src/main/assets/capacitor.config.json`
ionic capacitor sync android
<activity ... android:windowSoftInputMode="adjustPan" ...>