im trying to build an app to read this feed: http://loc.grupolusofona.pt/index.php/?format=feed
Its working just fine, except for the fact that when it reaches the
The problem, I think, is that the tags that are returned by that site all contain sections, not text. Your code for XMLParser.getElementValue only returns values for TEXT nodes. Change this:
if( child.getNodeType() == Node.TEXT_NODE ){
return child.getNodeValue();
}
to:
if( child.getNodeType() == Node.TEXT_NODE || child.getNodeType() == Node.CDATA_NODE ){
return child.getNodeValue();
}