Disappearing soft keyboard in Android app #498
Replies: 1 comment 3 replies
-
With the information available I can't really say for certain what the issue is but I can share knowledge that can potentially help pinpoint the root issue. Based on the animated gif, it definitely looks like the input is losing focus, just after the window is resized. On Android the document "window" is resized when the soft keyboard opens matching the new size of the view port. This is part of adjustResize vs adjustPan
These are native configurations, which can should be editable via <edit-config> directive. I wouldn't call using Node replacementIf you're swapping nodes which some frameworks like (ReactJS) might do depending on how the application is doing it's rendering, it might cause the behaviour you're seeing. If you're using any UI frameworks like ReactJS, or Angular, etc... review their documentation to ensure that they manipulate existing nodes rather than a complete replacement. Replacing nodes will cause nodes to lose their focus. |
Beta Was this translation helpful? Give feedback.
-
Soft keyboard disappearing in Android app
I have this problem with many users, I found a page about this and I tried several published functions but the problem persists.
https://stackoverflow.com/questions/38296574/disappearing-soft-keyboard-in-android-app
Any solution for this?
Beta Was this translation helpful? Give feedback.
All reactions