I am using a WebView and am trying to load a HTML file into it which I have stored in my Resources/raw folder ( I cannot do assets because I am working with a ClassLibrary)
webView.LoadUrl("file:///android_res/raw/test.html");
What is happening is that the content of the file gets loaded in the WebView, the actual html code
This is what I see in my webview
<html>
<body>
<b>TEST THISSSSS</b>
</body>
</html>
When what I should be seeing is
TEST THISSSSS
Why is this happening ? What am I doing wrong ?