android xmlpullparser得到需要的元素

时间:2016-02-22 03:53:57

标签: android xmlpullparser

这是xml
enter image description here

这是xmlpullparser enter image description here

它将获得所有img。
但是我希望得到的phil是phil_1和phil_2 我在任何地方寻找,但无法得到答案 有人能帮帮我吗? 谢谢你的阅读。抱歉我的英文不好

1 个答案:

答案 0 :(得分:0)

您已经拥有了所需的大部分内容。要完成比较,您所要做的就是:

// Get the attribute name that you first need
case XmlPullParser.START_TAG:
    String attr = parser.getAttributeName(null, "phil");
    if(!attr.equals("phil"))
        continue; // continue to the next event type

// So when the code hits this case, you know for sure the attribute type is Phil
case XmlPullParser.TEXT:
    // Just do your regular stuff here