从HTML字符串在TextView中显示图像

时间:2017-01-14 13:51:33

标签: java android textview

您好我用jsoup解析XML,我可以向TextView显示字符串html。 我使用spannable sting,它的工作但没有显示图像,如何解决?

Spannable storySpan
storySpan = new SpannableString("<p><strong>Text</strong>TextText</p><p>Text2</p><p><img src="http://web.com/link-img.jpg"></p><p>Text2</p>");

articletext.setText(Html.fromHtml(String.valueOf(storySpan)), TextView.BufferType.SPANNABLE);

输出高于代码

文字 - 文本文字

文字2

image

文字3

如何显示图片? 感谢。

0 个答案:

没有答案