I would like to load this content to a WebView:
When i try like this:
myWebView.loadUrl(myUrlAdress); It is loading the content but with all the html formatting visible, so i can see all the paragraph tags and the css style definition, so it is like a plain text.
When i try like this:
myWebView.loadDataWithBaseURL(myUrlAdress, null, "text/html", "UTF-8", null); Simply nothing happens, webview stays blank without any data.
Last way i tried is:
myWebView.loadDataWithBaseURL(myUrlAdress, myUrlAdress, "text/html", "UTF-8", null); This time the webview simply prints the link from i try to get the data, and nothing else.
Can somebody tell me which way to go and what is the problem?