Parsing XML in android, but not the attributes

MiniAcele

New Member
I'm trying to parse a really simple XML in my android app, for example:\[code\]<data> <section id="123">bla</section> <area>blabla</area> </data> \[/code\]But in every example I find I see how to extract the data in the attribute (id being 123) when what I need to extract is the data displayed - "bla" and "blabla".
How do I do that using SAXParser?
 
Back
Top