Tagged Questions
81
votes
16answers
71k views
Simple RSS parser for Android
I am trying to create my first Android application and I'm not all that experienced with Java development. In short, the application needs to do the following:
On click, fetch a RSS feed online
...
7
votes
4answers
3k views
How to open my Android app when rss link is opened in browser?
I'm creating an rss aggregator for my Android phone. I'd like to be able to subscribe to an rss feed from the browser since most websites have a subscribe via rss button.
How can I build an intent ...
5
votes
2answers
295 views
Android rss feed parsing
I am new to android,In my application i have to parse the data and i need to display in screen.But in one particular tag data i can't able to parse why because some special character also coming ...
5
votes
2answers
382 views
Isolating a link in RSS Feed
I am new to programming so please go easy on me, I have been messing around with a simple RSS Reader, trying to get the link to the artice to open in a webview when the user clicks on the article.
I ...
5
votes
1answer
5k views
Parsing RSS on Android
I've got a couple RSS feeds I need to parse for my app and I followed the excellent tutorial here: http://w2davids.wordpress.com/android-rssatom-feeds-parsing-with-rome/. I modified the sample a bit ...
4
votes
4answers
2k views
Android - broken XML parsing example
Android SDK since release of API v. 11 contains XmlAdapter sample which is also referenced from the official site. This sample appears now in at least 3 folders: android-11, android-12 and android-13. ...
4
votes
2answers
537 views
Android: How to download RSS when a website contains: link rel=“alternate” type=“application/rss+xml”
I am making a RSS related app.
I want to be able to download RSS(xml) given only website URL that contains:
link rel="alternate" type="application/rss+xml"
For example, http://www.engaget.com source ...
4
votes
3answers
3k views
How to use AsyncTask to display ProgressBar and load Rss
I'm using AsyncTask to display a progressBar while loading Rss News. Because this is my first time i m using asyncTask i dont know if my method is right,so could you please tell me if it looks good to ...
4
votes
1answer
61 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:
...
3
votes
4answers
972 views
I need a clickable UI element instead of Toast (can i create custom toast with clickable feature?)
I am developing a RSS news feed app for Android, and using Toast.makeText() to show the news or current update. It must go on web on the click of that message/news. The problem is that the Toast has ...
3
votes
4answers
157 views
RSS Feed description returns '<'
I'm trying to parse rss data from this feed: http://fulltextrssfeed.com/feeds.bbci.co.uk/news/rss.xml, which was generated using using the FullTextRssFeed site. The only problem is that when I try to ...
3
votes
1answer
1k views
Android: Cache XML File from RSS Feed
I just started doing my first Android app which happened to be an RSS Reader. I did a googling about this but haven't seen a clear reference though. What I wanted to do is to cache my xml file (the ...
3
votes
3answers
253 views
What is the better way to develop RSS reader for Android bassed on HTTP requests?
I'm new in development of applications for Android so I'm asking those questions for know which is better way to make RSS reader app. I have a server that downloads and stores on database news from ...
3
votes
1answer
537 views
Android: RSS parsing stops at special characters
I've searched a lot but haven't found a solution to why my rss reader stops at special charaters like æ ø å ' etc.
The reader reads the feed until it runs into a special character - then it stops ...
2
votes
3answers
4k views
Easiest way to implement RSS reader on Google Android?
This is my first time on stack overflow, so I apologize if this question has been asked before, but is there an easy way to implement an RSS reader on the Google Android (API 1.5)?
I'm searched far ...