Ok so you want to retrieve information from the internet and store it in a ListView?
You can get data from the internet by XML Parsing:
1. You cou use DOM Parsing
2. SAX Parsing
3. Or the most efficient way, Pull Parsing
You may have to update it yourself; or you could parse the website, this is more difficult but its possible, if you use something like jSoup
There is a great tutorial for PullParsing on the Android Dev Site.
There are also a lot of tutorials about ListViews and retrieving images. E.g. this
Next time if you expect somebody to answer, provide more information and what you have already tried.