Native App Keyboard covering Textboxes

0
Hi all, I'm having the following issues in my Mendix Native App (currently only on android).   When the user clicks into a text area the os keyboard opens, but it is covering the majority of the text area.  The page itself has a scroll container, and all items are then inside that scroll container.     I'm currently using Mendix 9.24.12, is there something additional I need to add to the page to make the page move up so the keyboard displays below the text area?   Any help would be greatly appreciated.
asked
2 answers
0

Hi G Kerr,

 

Please refer the below similar communication maybe it's helpful for you,

https://community.mendix.com/link/space/mobile/questions/104085

 

Hope it helps!

Thanks & Regards,

Manikandan K

answered
0

I resolved this by updating the AndroidManifest file (in android/app/src/main/AndroidManifest.xml) setting the following attribute;

 

android:windowSoftInputMode="adjustResize"

 

previously is was set to adjustPan.

answered