Facing a strange issue. When I am tapping on any text field to edit, the soft keyboard pops up. But the field remains hidden underneath. But as soon as I type any character from the keyboard, it automatically scrolls up and come to the correct position.[Images attached]
Keyboard appears on focus in the Pin Code field and overlapped it.
Screen gets re-positioned as soon as I start typing. I typed "7"
my config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.appid.something" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Name of the app</name>
<description>
Some description
</description>
<author email="my email" href="link">
our team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<plugin name="cordova-sqlite-storage" spec="~2.0.0" />
<preference name="Orientation" value="portrait" />
<preference name="fullscreen" value="false" />
<preference name="android-windowSoftInputMode" value="adjustResize"/>
<feature name="DatePickerPlugin">
<param name="android-package" value="com.sharinglabs.cordova.plugin.datepicker.DatePickerPlugin"/>
</feature>
</widget>
My requirement is, it should automatically gets repositioned as soon as it get the focus.
Also, in keyboard open mode, scrolling is not hapening.