0
votes
0answers
51 views

android: how to read wordpress feeds using robospice?

I've been studying the robospice-sample-spicelist in order to adapt part of it for a feed reader I'm trying to code. If I use the its SpringAndroidSpiceService as is I get an exception for not having ...
0
votes
1answer
51 views

Difficulty Reading with Atom Reader

I tried making a parser for both RSS and Atom where RSS feed shows the headlines while Atom shows with images and description plus link. It seems my parser works only for RSS. Can you tell me why? ...
0
votes
1answer
282 views

Android fast rss/atom parsing

I'm looking for a fast way to parse an RSS and Atom feed (the source changes periodically). I tried different approach: Writing my own parser: I made a very fast one using SAX Problem: Most of the ...
0
votes
1answer
99 views

Read RSS feeds with atom support

Hello i am looking for a code snippet or even better for an android library for reading rss (atom) feeds. Thanks in advance!
4
votes
1answer
63 views

Android: how to get link from Atom

I'm making RSS reader for Android but I have problem with Atom. In RSS 2.0 I get link with this: if (xpp.getName().equalsIgnoreCase("link")) and it's made like this: ...
0
votes
1answer
274 views

android How to parse atom feed?

I am doing a task based on retrieving images from the picasa public albums. It's returning response in the atom feed format. Here is the response snippet im getting from the picasa. <item> ...
0
votes
1answer
126 views

android rss data <dc:date> and image extraction

I have an xml file with the following structure <item> <title>Title</title> <link>Link</link> <description>Description</description> ...
0
votes
0answers
184 views

Android native SAX Parser & choosing adequate root element

I've chosen the Android's SAX Parser to perform rss and atom parsing because of it's simplicity. The parser works perfectly on pure rss feeds (not the combined rss and atom feeds I've found arround ...
1
vote
3answers
427 views

How do you pull XHTML out of an ATOM feed using Java?

I am trying to pull some XHTML out of an RSS feed so I can place it in a WebView. The RSS feed in question has a tag called and the characters inside the content are XHTML. The site I'm paring is a ...
1
vote
0answers
103 views

how to retrieve image url from atom feeds?

I am new to android and feed readers too.. I am doing a feed reader program on atom feeds, I am able to get the title, description, Publish Date etc.. But I am not able to get the image url and Data. ...
0
votes
1answer
387 views

How to read RSS/ATOM feeds in android

I need atom/rss feed reader.. can any one have a sample code please help me. Thank You.
0
votes
1answer
227 views

YouTube Java API Vs Android REST Client implementation

I am trying make and android app which will pull uploaded videos from a channel and display them in a list view, user will be able to watch videos subscribe to the channel,comment and like videos. I ...
0
votes
1answer
440 views

Parsing an Atom document in android

Problem I'm communicating to a REST API which uses an atom feed as responses. This means I need to parse this. Solution I want the solution to be as clean as possible. Speed is a plus/low memory ...
0
votes
1answer
89 views

Atom feed cannot be received

I am using my usual code to receive a feed in xml and store it as a String, but getting an "unknownhostexception". link:http://android-tv-app.com/Hls8zUWPqa9C2U/feed/atom code: String ...