1

The webview is not pushed up when the input field is focused. I set android:windowSoftInputMode="adjustResize" in manifest and the view is not in fullscreen mode. The input field is always hidden by the keyboard. Thanks

  • check this https://stackoverflow.com/questions/40279364/android-webview-doesnt-scroll-enough-when-keyboard-opens – Shrey Garg Apr 17 '19 at 06:54

1 Answers1

0

Did you try this?

wb = (WebView) findViewById(R.id.webView1);
wb.requestFocusFromTouch();
wb.requestFocus(View.FOCUS_DOWN);
SamiAzar
  • 1,260
  • 13
  • 29