Reputation: 573
Im testing a simple html file with some input fields and two buttons, after installing the apk file on my android device everything seems well, but when I rotate the screen I receive the following error
Im using a samsung galaxy s3 mini with android 4.1.2.
Im using the latest phonegap and eclipse juno.
How can I fix (or hide) this error?
Upvotes: 2
Views: 211
Reputation: 818
You should add android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
to your activity in the AndroidManifest.xml, like recommended in the PhoneGap API Documentation
Upvotes: 2