Hi all I am using webview in my application. I have css file which sets background color, font size. Now I want to set color and font size at runtime. How to override these properties at runtime in android? I had tried like:
webview.setBackgroundColor(Color.parseColor("#919191"));
WebSettings webSettings = webView.getSettings();
webSettings.setDefaultFontSize(25);
But it does not work. I had also tried to written this code after webView.loadDataWithBaseURL(......)
How to override font and bacground color at runtime?