Skip to content Skip to sidebar Skip to footer

Android Html Image Prob

I am displaying a text file that contains html code in a webview using loadData(). The html code has a image tag like cd4+ cell

Solution 1:

Try using loadDataWithBaseUrl() instead of loadData(). Something like this:

public void loadHTML() {  
    final String mimeType = "text/html";  
    final String encoding = "utf-8";  
    final String html = "<img src=\"file:///android_asset/test.png\" />";  

    WebView wv = (WebView) findViewById(yourIDhere);  
    wv.loadDataWithBaseURL("fake://not/needed", html, mimeType, encoding, ""); 
}

Solution 2:


Post a Comment for "Android Html Image Prob"