我使用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
如果我没弄错的话,这还应该显示图片?
如果有人有任何领导,谢谢......
答案 0 :(得分:6)
如果您查看documentation for the loadData()
method,您会看到它:
通过此机制加载的内容无法从网络加载内容。
答案 1 :(得分:0)
也许你只需要添加
<uses-permission android:name="android.permission.INTERNET" />
到您的App Manifest。