您好我用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
文字3
如何显示图片? 感谢。