1

我正在使用loadData(). html 代码有一个类似的图像标签<img src="file:///android_asset/test.png" alt="cd4+ cell">,并将 test.png 文件放在文件res\drawable夹中。但是没有 img 的 webview 显示完美。我的系统中的问题在哪里?

4

2 回答 2

3

尝试使用loadDataWithBaseUrl()而不是loadData(). 像这样的东西:

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, ""); 
}
于 2011-02-21T13:59:22.563 回答
0

你可以看到 CDATA 或者在上面的代码中你可以添加你的标签

于 2011-05-14T07:01:10.790 回答