我正在尝试解析此链接http://lawncare.ncsu.edu/RSSFeed.aspx中显示的图像并将其显示在Android设备中。现在,我只能解析与图像相关的文本。谁能提出任何有关如何解析这些图像的想法?最好不要使用JSoup,因为我已经在代码的一半了。
答案 0 :(得分:0)
请尝试在How to parse XML using the SAX parser
处查看此问题 特别是达米安及其解决方案给出的答案。这是我的代码的一部分,我正在解析rss feed:
Bundle b = new Bundle();
b.putString("title", feed.getItem(position).getTitle());
b.putString("description", feed.getItem(position).getDescription());
b.putString("content", feed.getItem(position).getContent());
b.putString("link", feed.getItem(position).getLink());
b.putString("pubdate", feed.getItem(position).getPubDate().toString());
我所做的是“字段”包含描述(文本)和图像。我将整个“内容”字段内容传递给WebView,它正确显示图像和文本。