我正在使用 Html.fromHtml 来获取描述标签的内容(在提要 XML 中),它工作正常
说明标签:
<description><![CDATA[<div class="K2FeedIntroText"><p><img style="margin: 10px; float: left;" alt="block curta" src="http://loc.grupolusofona.pt/images/stories/destaques/block%20curta.jpg" height="110" width="120" />Quatro Horas Descalço é o nome da curta-metragem, realizada por Ico Costa, que se estreia mundialmente no 7.º Festival Internacional de Cinema de Roma, nos dias 12 e 13 de novembro, em competição no Cinema XXI.</p>
]]>
但是当我查看文档时,它说:
Returns displayable styled text from the provided HTML string. Any <img> tags in the HTML will display as a generic replacement image which your program can then go through and replace with real images.
所以我的问题是:我怎样才能做到那里所说的“你的程序可以通过它并用真实图像替换”?
我知道如何使用模式通过 RegEx 获取 img url,我只是想知道如何使用该类“通过并用图像替换它”
如果我不清楚并且生病尝试更好地解释它,请说些什么。
编辑:
好吧,我正在尝试在一个简单的 rss 阅读器中实现这一点(并尝试在代码方面使其尽可能简单)
我正在使用 DOM Parser 并且我正在使用 amap = HashMap<String, Spanned>
来存储每个子节点的值,以及KEY
:
map.put(KEY_DESC, Html.fromHtml(parser.getValue(e, KEY_DESC)));
在答案的评论中,我发现了一个有用的链接,我从中创建了一个新类(URLImageParser)并尝试像这样使用它:
map.put(KEY_DESC, htmlSpan);
结果在哪里htmlSpan
:
this.textView = (TextView)this.findViewById(R.id.textview);
URLImageParser p = new URLImageParser(textView, this);
Spanned htmlSpan = Html.fromHtml(html, p, null);
textView.setText(htmlSpan);
我还创建了一个android:visibility="gone"
TextView 以防它需要将值存储在 TextView 中(也许我解释错了)
我最初的想法是那种htmlSpan
类型Spanned
,所以它适合我的 HashMap 就好了。
对于上传到 ListView 我使用的SimpleAdapter
是这样的:
ListAdapter adapter = new SimpleAdapter(this, menuItems, R.layout.linhafeed,
new String[] { KEY_TITLE, KEY_DESC, KEY_PUBDATE, KEY_LINK },
new int[] { R.id.title, R.id.desc, R.id.pub, R.id.link });
menuItems
在哪里ArrayList<HashMap<String,Spanned>>
我这里有什么问题吗?