0
votes
1answer
2k views

How to parse xml string with xmlpullparser android

I want to parse an XML string and display it in a EditText but I can't, I not understand what could be the problem, please a bit help, my code : private String xmlc = ...
1
vote
1answer
52 views

Android-PullParser returns different string-type?

Here's my code: String Attr = parser.getAttributeValue(null, "name"); String Text = parser.getText(); if (Attr == "id"){ parser.nextTag(); }else ...
5
votes
2answers
992 views

Android custom XML parser fails to resolve android namespace

I would like to get the correct way of parsing custom android tags with an XmlResourceParser. I am using Eclipse 3.6 with the android plug-in, and I would like some attributes like the name be ...