android中的webview loaddata不会从img src加载图片

时间:2010-05-25 15:52:17

标签: android webview image src

我使用loadData方法将一些html内容加载到webview中,但遇到类似这样的内容时:
    <a href="http://www.anywebsite.fr/">some text</a><img src="http://www.anotherwebsite.fr/thewantedpicture" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />
我只在应用程序中得到这个:
some text
如果我没弄错的话,这还应该显示图片? 如果有人有任何领导,谢谢......

2 个答案:

答案 0 :(得分:6)

如果您查看documentation for the loadData() method,您会看到它:

  

通过此机制加载的内容无法从网络加载内容。

请尝试使用the loadDataWithBaseURL() method

答案 1 :(得分:0)

也许你只需要添加

<uses-permission android:name="android.permission.INTERNET" />

到您的App Manifest。