i am trying to change text color of webview with this code
String message =\"\"+\"\"+
\"text in white\"+ \"
\"
In order to change a WebView’s background color there is a standard way:
mWebView.setBackgroundColor(Color.Black);
In order to change a WebView’s text font color there is no standard way: Either you change the font through the html code, or you do this:
htmlData="" + htmlData + "";
mWebView.loadDataWithBaseURL(null, htmlData, "text/html", "UTF-8", null);