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: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.