Reputation: 2802
I built an app with PhoneGap for Android. It works fine untill you open any text input - after that status bar overlaps webview and stays there.
Ive searched all questions and seems like its a common problem for iOS 7, but not for Android. And no menthions of phonegap issues whatsoever.
Any ideas how to override it for Andorid built in Phonegap?
Upvotes: 2
Views: 2177
Reputation: 2802
There was fullscreen enabled by default in config.xml
Disabled it and now it works without overlapping:
<preference name="fullscreen" value="false" />
Upvotes: 8