Denis Matafonov
Denis Matafonov

Reputation: 2802

Phonegap: Android 6 status bar overlaps webview

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.

Before touching input field

After touching input field

Any ideas how to override it for Andorid built in Phonegap?

Upvotes: 2

Views: 2177

Answers (1)

Denis Matafonov
Denis Matafonov

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

Related Questions