I have cordova application which loading the html pages from web. Now these web pages have input fields, so when click on these input fields android default keyboard appear. I dont want to use this keyboard as already have customize keyboard as popup in side application. What i try: add following configuration inside my activity in androidManifest.xml
<activity
android:name=".MainActivity"
android:screenOrientation="sensorLandscape"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize|stateHidden"
android:configChanges="keyboardHidden|orientation|screenSize">
But nothing can stop appearing this default keyboard. Can someone suggest me how to disable keyboard for my application only.