I am using Phonegap 1.9.0 in Android 4.1 with the following simplified page index.html:
<html>
<head>
<script type="text/javascript" src="cordova-1.9.0.js"></script>
</head>
<body>
<input type="text" name="somethings"></input>
</body>
</html>
The application works fine, but when I give focus to the input and try to give it text, nothing is entered.
The OS works as if I were pressing keys (on a virtual keyboard) because it involves spelling corrections and the keyboard user interface responds ... but nothing gets into the input field.
What am I missing?
source
share