How to fetch multiple Rss feed message in single List view? Is there any idea to parse more than one feed url? I searched in google, but I didn’t get any proper answers.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You would need to parse the feeds seperately (as each feed is a self contained xml) – If you parse each feed, and build a list of items parsed, then once you have read all the items, put them in a single list and sort them.
then you can return that list to your listView and they will be displayed like one continuous feed of data.