I have css file url-> http:...../test.css.
Now I have html string htmlString=:
<div class=\"detailInfo\">\r\n<table class=\"leftFloat\">\r\n<tbody>\r\n<tr>\r\\r\n<\/tbody>\r\n<\/table>\r\n<\/div>*
Then,
webView=(WebView) findViewById(R.id.webViewDetials);
webView.setBackgroundColor(0x00000000);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadDataWithBaseURL("http://.../css/test.css", attributes, mime, encoding, null);
I don't know to render above url css in below htmlString html string. any idea.
There are lots of example get css from assets folder but i cannot find load css from url.