I am using the webview as following
WebView webView = (WebView) this.findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("https://m.facebook.com");
It loads the page fine. Now I am trying to add a line head section of the page before it renders in the web view. e.g.
<style>.test{color:red}</style>
is it possible to add. if yes then how??
this can be done using
evaluateJavascript