如何获取子 xml 值?
我的意思是:如果xml.getName() = Section
给我它的 Sub 值。我想我必须在其中使用一个while循环,但我无法实现它!
或者是否有可能获得父值?
<Top name="Top category">
<Section name="Sub category 1">
<Sub note="text" />
<Sub note="text" />
</Section>
<Section name="Sub category 2">
<Sub note="text" />
<Sub note="text" />
</Section>
</Top>
...
while (eventType != XmlPullParser.END_DOCUMENT) {
if ((eventType == XmlPullParser.START_TAG) &&(_xml.getName().equals("Section"))){
String _Section = _xml.getAttributeValue(null, "name");
// take its Sub note values
}
}
}