<?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的this example解析「id,名稱,成本和描述」是很好的。Android解析子XML標記
但<author>
和<authorurl>
標籤,例如上面的鏈接無法完成我的任務。請幫我解析這個XML文件的子標籤。