<?xml version="1.0" encoding="UTF-8"?>
<feed>
<entry>
<id>1</id>
<name>Margherita</name>
<cost>155</cost>
<description>Single cheese topping</description>
<list>
<author>PPShein</author>
<authorurl>http://www.ppshein.net</authorurl>
</list>
</entry>
<entry>
<id>2</id>
<name>Double Cheese Margherita</name>
<cost>225</cost>
<description>Loaded with Extra Cheese</description>
<list>
<author>Mike</author>
<authorurl>http://www.mike.net</authorurl>
</list>
</entry>
</feed>
我在解析上面的 XML 文件时遇到了问题。使用这个android的例子来解析“id、name、cost和discription”对我来说很好。
但是对于<author>
和<authorurl>
标记,上述链接的示例无法完成我的任务。请帮助我如何解析这个 XML 文件的子标签。