I have a WebView that contains an input form. When the user selects the first input the keyboard appears and will scroll the WebView so that the input is uncovered. My probl
You need to add android:windowSoftInputMode="adjustResize"
to your WebView tag in layout xml.
You need to add:
android:fitsSystemWindows="true"
to you root of the layout file for the fragment/activity as well as:
android:windowSoftInputMode="adjustResize"
to you activity in the manifest.
Check these answers:
Android webview scrolling doesn't work
Android Froyo WebView doesn't scroll vertically
Also, you can check version combatibility