2016-02-22 5 views
1

это XML
enter image description hereандроид xmlpullparser получить нужен элемент

это xmlpullparser enter image description here

он получит все IMG.
, но я хочу получить img of phil is phil_1 и phil_2.
Я смотрю куда угодно, но не могу получить ответ.
Может ли кто-нибудь мне помочь?
спасибо для чтения. извините за мой плохой английский

ответ

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 
+0

Я следую за вами и изменения кода: String атр = parser.getAttributeValue (нуль, «фил»); if (! Attr.equals ("phil")) { if (tagname.equalsIgnoreCase ("img")) { img = new imgclass(); } }; но ничего не показывают. извините, я только новичок в java – abcd1234