I made a android webview app using the following code
webView = (WebView) findViewById(R.id.webview);
webView.setWebViewClient(new WebViewClient());
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webView.loadUrl("*web url*");
the problem is that some forms in the webpage functions correctly but there are some forms that when I click on it, it automatically closes the keyboard therefore not allowing the user to type anything? any fix on this?