Answer by VNVN for Processing RSS Feeds with Namespaces in Android
I would not recommend trying to implement your own RSS parser , but rather using a standard library for that.You need to cater to all formats RSS 1, RSS 2, Atom etc. Even then you will have to contend...
View ArticleAnswer by borq for Processing RSS Feeds with Namespaces in Android
One way I found that the Xml parser (on Froyo 2.2) works with namespace prefixes is by specifying the namespace URL as the first parameter to your item.getChild() call. For example, if your xml looks...
View ArticleAnswer by Alex for Processing RSS Feeds with Namespaces in Android
In as far as I can tell the "android" SAX parser has no support for namespace (xmlns) nesting (despite the rootelement object specifically mentioning namespace), the stripped "J2SE" SAX parser is also...
View ArticleProcessing RSS Feeds with Namespaces in Android
I'm trying to write an XML parser that takes an RSS feed & fetches the image urls shown in the url attribute of the <media:thumbnail> tag. This is all being done via android.Util.Xml, &...
View Article