I've created a static html page to be displayed in the WebView, I've a css file inside the /assets/common.css
folder. The code looks like;
String linkCss = "<link rel=\"stylesheet\" href=\"/assets/common.css\" type=\"text/css\">";
String body = "<html><header>" + linkCss + "</header>" + content + "</body></html>";
webViewer.loadDataWithBaseURL("x-data://base", body , "text/html", "UTF-8", null);
Everything display correctly except the CSS isn't being applied. Whats the problem?