I have the below code:
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://www.facebook.com/example");
mWebView.setWebViewClient(new CallBack());
When the user is prompted to log in, and the text fields (email address and password) gain focus, the keyboard does not appear, therefore the user cannot log in.
What can I change? The page is loading correctly.