Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to display all the feeds from my FB account in a list view. I am able to display a single feed using JSOUP library. It displays me image of the user, name of the user and messages posted by user. Its static way i have done. I need to dynamically display all the posts as a list view. How can i do that. Any idea would be of a great help for me.

Thanks in advance.

share|improve this question

1 Answer

You could periodically poll the feeds.

Use a Timer (java.util) to download new feed item and update the list accordingly.

share|improve this answer
How can i dynamicaaly display posts in listview in android – user1083389 Dec 9 '11 at 6:50
Once you download the new feeds, add them to your adapter and call notifyDatasetChanged(), the list will refresh with the new data – st0le Dec 9 '11 at 6:52
In JSOUP i directly get the class value and display that in corresponding fields. Static urls it works. But how can i dynamically do that. When i need to fetch the data – user1083389 Dec 9 '11 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.