Phonegap android add windowSoftInputMode using config.xml

I am creating a phonegap application, and to build android I want to set the windowSoftInputMode property of the windowSoftInputMode manifest file using config.xml .

Is there a way to do this using config.xml or the command line. Let's pretend that.

Thanks in advance.

+7
android android-manifest cordova
source share
1 answer

Add the following setting to the config.xml file:

 <preference name="android-windowSoftInputMode" value="stateVisible|adjustResize" /> 

You also need to disable full-screen mode:

 <preference name="Fullscreen" value="false" /> 

More details:

+6
source share

All Articles