从xml获取包含图像路径的图像

时间:2011-03-22 07:39:46

标签: android xml

我有一个XML文件,其中包含图像的路径,如下面的代码:

<Source>
  <ID>001</ID>
  <Name>News</Name>
  <Country>United States</Country>
  <FeedURL>
    http://abcd.xml
  </FeedURL>
  <Download>true</Download>
  <Image>
    http://creativityinlife.files.wordpress.com/2009/03/as_much_as_i_dream.jpg
  </Image>
</Source>

我想检索并显示图像。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

由于您的xml非常简单,您可以使用DOM解析器,请参阅Android XML Parsing Tutorial – Using DOMParser并获取该URL 然后使用Load Image from server using thread

加载该网址