I have developed an phonegap app for Android. I had following attribute in manifest.
android:theme="@android:style/Theme.NoTitleBar"
And I figured out that when any <input />
element was getting focus, the footer on the WebView (as it was of position:fixed) was getting up above with the soft keyboard. I found a fix for it by re-writing the manifest with the same attribute as follows.
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
But then another problem is there, the app has full screen and status bar is shown but it feels like the app initial part is under status bar. I read on other posts people trying to hide status bar setting this attribute but I don't want to hide the status bar but tell the android WebView not to shift or move any content inside it.
Is there alternative of Fullscreen to tell WebView not to shift or move content if it?