I would like to change the text colour of text inside html file to white colour as I have changed the background colour to black. How can I achieve this?
webView = (WebView) findViewById(R.id.webview);
webView.loadUrl("file:///android_asset/page1.html");
webView.setBackgroundColor(Color.parseColor("#000000"));
Thanks guys :)